Polymorphism
Basic Method Polymorphism
# Polymorphism Example
class Dog:
def sound(self):
print("Bark!")
class Cat:
def sound(self):
print("Meow~")
class Bird:
def sound(self):
print("Peep.")Last updated