Python - Classes and Object Lifecycle
What will be the output of this code?
class MyClass:
def __init__(self):
print('Object created')
obj = MyClass()