Python - Inheritance and Code Reuse
Identify the problem in this code:
class Base:
def info(self):
print('Base info')
class Derived(Base):
def info(self):
Base.info()
print('Derived info')
d = Derived()
d.info()