Python - Inheritance and Code Reuse
Find the error in this code:
class Parent:
def greet(self):
print("Hello from Parent")
class Child(Parent):
def greet(self):
print("Hello from Child")
obj = Child()
obj.greet()
Parent.greet()