Question: Chapter 7 Section 7.1 Textbook page: 282 Use the Automobile Class code below class Automobile: def __init__(self, make, model): 1. 2. def setMake(self, make): self._make
Chapter 7 Section 7.1
Textbook page: 282
Use the Automobile Class code below
class Automobile:
def __init__(self, make, model):
1.
2.
def setMake(self, make):
self._make = make
3. def getMake(self): return self._make
4.
5.
Complete the Automobile Class (your file should have the complete code). Fill in the missing parts of code labeled #s 1-5 as follows:
1-2 The two instance variables for the initializer function for the class
3. The setter method for the model
4. The getter method for the model
5. The state representation method
Finally, below the class, in this same file, create an automobile object (any make and model developers choice) and then display it to the console by way of that state representation method output.
Sample Output when program is run might be:
Make: Ford
Model: F-150
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
