Python combien de mémoire fait une variable besoin

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