Python for Testers #36 – Multiple Inheritance in Python

In this Python for Testers Tutorial we will learn about Multiple Inheritance in python. This video will cover in detail about Python Multiple Inheritance with examples.

Multiple inheritance means that the child class or sub class can inherit attributes and methods from more than one class. We will also discuss about method resolution order (MRO) in python and how the search is done when multiple inheritance in used.