Let suppose we have defined two classes:
class A():
    def __init__(self):
        self.a = 0
class B():
    def __init__(self):
        self.b = 0
Now, we want to define a third class C that inherits from A and B:
class C(A, B):
    def __init__(self):
        A.__init__(self)   # how to do this using super()
        B.__init__(self)   # how to do this using super()
 
    