Python - Polymorphism and Dynamic Behavior
Find the bug in this code:
class Car:
def drive(self):
print('Driving')
def operate(vehicle):
vehicle.drive()
operate(Car())
operate('bike')