Python - Polymorphism and Dynamic Behavior
Identify the error in this code:
class Person:
def greet(self):
return "Hello"
class Student(Person):
def greet():
return "Hi"
s = Student()
print(s.greet())