Python Multiple 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 more than one base class which is also called as multiple inheritance in Python.
Example:
class Employees(): def Name(self): print "Employee Name: Khush" class salary(): def Salary(self): print "Salary: 10000" class Designation(Employees, salary): def desig(self): print "Designation: Test Engineer" call = Designation() call.Name() call.Salary() call.desig() |
Output: