Python - Polymorphism and Dynamic Behavior
Find the error in this code that tries to override a method:
class Parent:
def show(self):
print('Parent show')
class Child(Parent):
def show():
print('Child show')
obj = Child()
obj.show()