Python - Classes and Object Lifecycle
What will be the output of the following code?
class MyClass:
def __init__(self):
print('Created')
def __del__(self):
print('Deleted')
obj = MyClass()
print('Object in use')
del obj
print('End')