Question: Make sure the script obeys all the rules in the Script Requirements page. PYTHON 3 please! Specification In your hw8.py define the class Car that
Make sure the script obeys all the rules in the Script Requirements page.
PYTHON 3 please!
Specification
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
Get step-by-step solutions from verified subject matter experts
