in Python3 i have one class that inherits two other classes. However as i see when an object is initialized only first class of it initialized also see example...
class A:
def __init__(self):
print("A constructor")
class B:
def __init__(self):
print("B constructor")
class C(A, B):
def __init__(self):
print("C constructor")
super().__init__()
c = C()
This has the output:
C constructor A constructor
My questions are, why it does not call B constructor also? And is it possible to call B constructor from C class with super?