Multiple inheritance in python

Multiple inheritance is a feature of object-oriented computer programming languages, where more than one parent class can be inherit in the child class. In our multiple inheritance example of python, first parent class only handle student personal details where in second parent class handle the marks of the student. For more details please check our example for multiple inheritance in python.