python-CSD-kursu/python-temel/init.example.2.py

14 lines
234 B
Python

class A:
def __init__(self):
print('A.__init__')
class B:
def __init__(self):
print('B.__init__')
class C(A, B):
def __init__(self):
super(C, self).__init__()
print('C.__init__')
c = C()