Python Multilevel Inheritance:
The property of acquiring all the properties and behaviors of the parent object by an object is termed as Python inheritance. Python facilitates inheritance of a derived class from its base class as well as inheritance of a derived class from another derived class. The inheritance of a derived class from another derived class is called as multilevel inheritance in Python, which is possible to any level.
Example:
class Employees(): def Name(self): print "Employee Name: Khush" class salary(Employees): def Salary(self): print "Salary: 10000" class Designation(salary): def desig(self): print "Designation: Test Engineer" call = Designation() call.Name() call.Salary() call.desig() |
Output: