python-CSD-kursu/python-temel/del.method.2.py~

13 lines
231 B
Python
Raw Normal View History

2023-07-26 13:12:12 +03:00
class A:
def __init__(self):
print('A.__init__called')
def __del__(self):
print('A.__del__called')
class B(A):
def __init__(self):
super().__init__()
print('B.__init__called')