Python - Inheritance and Code Reuse
You have a class Vehicle with a method start that prints "Vehicle started". You want to create a Car class that overrides start to print "Car started" but also call the Vehicle start method. How should you write the start method in Car?
