Question: ***USING PYTHON 2.7*** Encapsulation Redesign the following class to properly support encapsulation. Your modified class must include the following methods, with the correct naming conventions
***USING PYTHON 2.7***
Encapsulation
Redesign the following class to properly support encapsulation. Your modified class must include the following methods, with the correct naming conventions
- Accessors: wheels, doors, fuel, temperature
- Mutators: fuel
#!/usr/bin/python class Vehicle: wheels=4 doors=2 fuel=100.0 temperature=105.0 def __init__(self, wheels, doors, fuel, temperature): self.wheels = int(wheels) self.doors = int(doors) self.fuel = float(fuel) self.temperature = float(remperature)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
