class Base(object):
def __init__(self):
print("Base created")
class AnotherBase(object):
def __init__(self):
print("Another Base created")
def showMe(self):
print("& it's me!!!")
class ChildB(Base, AnotherBase): # Python смотрит слева на право по классам и выполняет первый метод класса, который найдет
def __init__(self):
super(ChildB, self).__init__()
super(ChildB, self).showMe()
ChildB()
# ----------------------
# Base created
# & it's me!!!