Loading

Quipoin Menu

Learn • Practice • Grow

python / Polymorphism
exercise
1/5
Exercise 1Python
Question

Demonstrate polymorphism by creating a function `make_sound(animal)` that calls the `sound` method of any animal passed. Define a base class `Animal` with `sound` method, and subclasses `Dog` and `Cat` that override it.