Question: Python question a 3. (25 pts) Implement a Car class. A Car object has the following information: odometer, brand, color, and gear. You will be

Python question
a 3. (25 pts) Implement a Car class. A Car object has the following information: odometer, brand, color, and gear. You will be creating brand new Car objects with odometer set initially to 0. Implement methods increment_gear() and decrement_gear() to increment or decrement the gear. It is initially set to 0. Implement a drive() method which takes two arguments: (1) Number of hours traveled and (2) km traveled per hour. This function is going to be used to modify the odometer Implement a method named display() to display the information of a car. Implement a test method that creates three Car objects. Assign their brand, color and gear. Then, call their display() methods to print their information
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
