Question: Python 3 In your hw8.py define the class Car that has the following attributes make model year The class must have the following methods get_make()

Python 3

In your hw8.py define the class Car that has the following attributes

make

model

year

The class must have the following methods

get_make()

get_model()

get_year()

print_car()

get_make()

This method returns the value of the make attribute.

get_model()

This method returns the value of the model attribute.

get_year()

This method returns the value of the year attribute.

print_car

This method prints a string consisting of the value of the make attribute, followed by a comma and a space, the value of the model attribute, followed by a comma and a space, and the value of the year attribute.

Test Code

Your script must contain the following test code

car = Car("Honda", "CRV", "1997") print(car.get_make()) print(car.get_model()) print(car.get_year()) car.print_car()

Testing

When you run your script, your output should look this this

Honda CRV 1997 Honda, CRV, 1997

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!