This project implements a simple inheritance hierarchy with an Animal parent class and two child classes: Mammal and Bird.
- Animal: Base class with name, age, and extinct attributes
- Mammal: Inherits from Animal, adds colour attribute
- Bird: Inherits from Animal, adds can_fly attribute
Run the main.py file to see examples: