Python - Inheritance and Code Reuse
Given this code, what will be the output?
class Parent:
def process(self):
print('Parent start')
class Child(Parent):
def process(self):
print('Child start')
super().process()
print('Child end')
obj = Child()
obj.process()