Inheritance is a fundamental concept in object-oriented programming that allows a new class, known as a subclass, to take on the properties and methods of another class, known as a superclass. This is a powerful feature that promotes code reusability and hierarchical class organization. In Python, it is indicated by writing the name of the superclass in parentheses next to the new subclass name:
Here, the `Canary` class inherits from the `Bird` class, meaning that `Canary` has access to the properties and methods of `Bird`. This eliminates the need to rewrite code, as it can simply inherit the behavior from the superclass.
Python allows single inheritance (inheritance from one superclass) and multiple inheritance (inheritance from multiple superclasses), providing flexibility in how classes can be structured. With inheritance, subclasses can override methods from the superclass, providing their own implementation where necessary, while still utilizing the existing functionality provided by the superclass.