def __init__(self):
self.foo = 1
class Bar:
def __init__(self):
self.bar = 2
class FooBar(Foo, Bar):
def __init__(self):
Foo.__init__(self)
Bar.__init__(self)
def hello(self):
print(self.foo)
print(self.bar)
fb = FooBar()
fb.hello()
super()
Обсуждают сегодня