Question
In Python 3 Create a Car class that has the following characteristics: It has a gas_level attribute. It has a constructor (__init__ method) that takes
In Python 3
Create a Car class that has the following characteristics: It has a gas_level attribute. It has a constructor (__init__ method) that takes a float representing the initial gas level and sets the gas level of the car to this value. It has an add_gas method that takes a single float value and adds this amount to the current value of the gas_level attribute. It has a fill_up method that sets the cars gas level up to 13.0 by adding the amount of gas necessary to reach this level. It will return a float of the amount of gas that had to be added to the car to get the gas level up to 13.0. However, if the cars gas level was greater than or equal to 13.0 to begin with, then it doesnt need to add anything and it simply returns a 0. (Note: you can call the add_gas method from within the fill_up method by using this syntax: self.add_gas(amount).)
Reminder: Dont forget about the self parameter!
Thank You for Your Help!
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