Multiple Inheritance With Constructors
Mon 10 August 2026
class A:
def __init__(self):
print("Constructor A")
class B:
def __init__(self):
print("Constructor B")
class C(A, B):
def __init__(self):
super().__init__()
c = C()
Constructor A
Score: 10
Category: chapter3_multiple_inheritance