Does Python support multiple inheritance?

Questions & AnswersCategory: PythonDoes Python support multiple inheritance?
1 Answers
Lokesh Kumar Staff answered 2 years ago

a. True

Explanation:

Python supports a form of multiple inheritance as well. A class definition with multiple base classes looks like this:

class DerivedClassName(Base1, Base2, Base3):
    <statement-1>
    .
    .
    .
    <statement-N>