class Parent: def show(self): pass class Child(Parent): def show(self): pass