Python - Inheritance and Code Reuse
Find the error in this code that tries to override a method:
class Vehicle:
def start(self):
print("Vehicle started")
class Car(Vehicle):
def start():
print("Car started")
c = Car()
c.start()