Inheritance in Python

Inheritance is important part of object oriented programming. Inheritance provide code reusability to the program. We can access property of any class and use them.
In inheritance child class can access all data and functions of parent class.