Blog Details

img
Data Science

What is the meaning of multiple inheritance in Python

Spoke Right / 14 Nov, 2023

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()

0 comments

Warning: PHP Startup: Unable to load dynamic library 'imagick.so' (tried: /usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so (/usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so: cannot open shared object file: No such file or directory), /usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so.so (/usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0