I would like to understand below behavior of class in python:
class A:
print("I am in class")
After running this code, without creating any instances I can see that print statement is executed. Without creating an instance, why is this statement executed?