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

15 lines
234 B
Python
Raw Normal View History

2023-07-13 11:35:05 +00:00
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()