Polymorphism
Example
class Bird:
def make_sound(self):
print("Chirp")
class Dog:
def make_sound(self):
print("Woof")
def animal_sound(animal):
animal.make_sound()
animal_sound(Bird())
animal_sound(Dog())Key Idea
Last updated