Python - Inheritance and Code Reuse
What will be the output of this code?
class A:
def show(self):
print('A show')
class B(A):
def show(self):
print('B show')
super().show()
b = B()
b.show()