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):
print('Derived info')
def info(self):
print('Another info')
obj = Derived()
obj.info()