python berapa banyak memori yang dibutuhkan variabel

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