Python

Inheritance Programs in Python for Practice1 min read

What is inheritance?

Inheritance allows us to define a sub or child class which inherits functionality from another class, otherwise known as a base class or a parent class.

Inheritance is usually referred to as an Is-A relationship. For example: a car is a vehicle, or a dog is an animal.




Inheritance allows us to reuse code from a class. We wrap common code in one class, then reuse that code in another class.

Inheritance also provides polymorphic behavior, which can be quite powerful.

Inheritance Programs in Python (Example)

Example-1: Create a Child class using Parent class.

Example-2:

Leave a Comment