# Example of polymorphism in Python class Cat(Animal): def sound(self): return "Meow!" def animal_sound(animal): return animal.sound() cat = Cat() print("Cat Sound:", animal_sound(cat)) # Output: Cat Sound: Meow!