Why does the following produce such different results?
>>> sys.getsizeof(int) # same as sys.getsizeof(object), sys.getsizeof(type)
400
>>> sys.getsizeof(1)
28
Is the actual size of the item 1
equal to the size of the object (400) + the size of the actual integer value (28) = 428, or how exactly does the integer/object creation work here?