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

20 lines
336 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')
def __del__(self):
print('B.__del__ called')
super().__del__()
b = B()
b = None