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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started