Python - Classes and Object Lifecycle
What will happen when this code runs?
class Demo:
def __del__(self):
print('Object destroyed')
obj = Demo()
del obj