import sys
print(sys.getsizeof(4))
print(sys.getsizeof(int))
print(sys.getsizeof(int()))
When i try to run the above code it displays the following output
28
400
24
But since all the given thing inside the parenthesis are int, so how it is giving different output. Can someone explain??