Question: python code Name: Username: Lab 11 11/(8,9)/18 Design some Classes This exercise is to introduce you to designing code on paper before you start coding.

python code
Name: Username: Lab 11 11/(8,9)/18 Design some Classes This exercise is to introduce you to designing code on paper before you start coding. It is important to have some idea or sketch of what you want to do before you do it. Below are the guidelines for what you need to create. Create classes that hold information- they do not have to be syntactically correct. the desired Be explicit on what would be an instance variable (also can be thought of as attributes), what the constructor would take as parameters (what is always at the start of a constructor), and any functions with a short description of what they do including what parameters they need. Also, explicitly indicate what the_str_would return for an instance of each of your classes (this is what the console would display when you print class instance) You are given the task of designing 3 objects, a Person class, Car class, Tire class. We've provided hints for instance variables and functions. A Tire initially starts with a tire pressure of 80 and is notfat and does not have a leak Every tire can give its tire pressure. A tire can be made flat. A Tire can be refilled to a certain pressure. 1 2. A Car has a year, make, and model. A car is initially off and every car has four tires. Someone can start a car, and someone can also turn off a car. A Car can tell a user what the average tire pressure for all tires. 3. A Person has a name and owns a car
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
