Python - Inheritance and Code Reuse
Find the error in this code that tries to extend the parent method:
class Parent:
def show(self):
print('Parent show')
class Child(Parent):
def show(self):
super.show()
print('Child show')