Mote Akshitha has Published 1 Articles

How does class variables function in multi-inheritance Python classes?

Mote Akshitha

Mote Akshitha

Updated on 24-Apr-2025 19:10:34

435 Views

In Python, when a class is derived from more than one super-class or base class, it is known as multiple inheritance. Following is the syntax of multiple inheritance in Python - class Super1: pass class Super2: pass class MultiDerived(Super1, Super2): ... Read More

1
Advertisements