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