16. Understanding Multiple Inheritance
Python supports Multiple Inheritance which means a class can inherit features (attributes and methods) from more than one base / parent class.
Syntax:
class base1: statement1 ... statementn class base2: statement1 ... statementn class derived(base1, base2): statement1 ... statementn