Answered step by step
Verified Expert Solution
Question
1 Approved Answer
python 2.7 please TA Initials (20 Points) Implement the class Car with the following properties. A car has a certain fuel efficiency (measured in miles/gallon)
python 2.7 please
TA Initials (20 Points) Implement the class Car with the following properties. A car has a certain fuel efficiency (measured in miles/gallon) and a certain amount of fuel in the gas tank. The efficiency should be specified upon instantiation, and the initial fuel level should be zero. Supply a method called drive that simulates driving the car for a certain distance, which reduces the fuel level in the gas tank. If the car is unable to drive the specified distance, this method should return False. Otherwise, drive should return True. Additionally, supply a method called get-gas.level to return the current fuel level and a method called add gas to add fuel back to the tank. An example of these methods in use is as follows: hybrid-car = Car(50) # 50 miles per gallon hybrid-car, add-gas (20) # Add 20 gallons of fuel if hybrid-car, drive(100): # Drive 100 miles print hybrid-car.get-gas-level() # Display remaining fuel else: print "Not enough gasStep 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