OOP 5: Parent - Child

OOP 5: Parent - Child

5.1. Create an ElectricCar class that inherits properties from the Car class.

5.2. Modify the __init__ method of the ElectricCar class so that it uses super() to call the __init__ method of the Car class.

5.3. Add a new attribute battery_capacity of type int to the ElectricCar class __init__ method. This attribute must be passing as argument. Put this argument before brand and model...

You should be an authorized user in order to see the full description and start solving this mission.