Python, сколько памяти требует переменной

from sys import getsizeof
a = 42
getsizeof(a) # size of object in bytes
Real Raccoon