Python - Polymorphism and Dynamic Behavior
What will be the output of this code?
class Parent:
def message(self):
print('Message from Parent')
class Child(Parent):
def message(self):
super().message()
print('Message from Child')
c = Child()
c.message()