Is there anyway i can know how much bytes taken by particular variable in python. E.g; lets say i have
int = 12
print (type(int))
it will print
<class 'int'>
But i wanted to know how many bytes it has taken on memory? is it possible?
|
Is there anyway i can know how much bytes taken by particular variable in python. E.g; lets say i have
it will print
But i wanted to know how many bytes it has taken on memory? is it possible? |
||||
|
|
|
You can find the functionality you are looking for here (in Also: don't shadow the
|
|||||||||||||||||||
|
|
In Python >= 2.6 you can use sys.getsizeof. |
|||
|
|
|
if you want to know size of int, you can use struct
otherwise, as others already pointed out, use getsizeof (2.6). there is also a recipe you can try. |
|||
|
|
|
You could also take a look at Pympler, especially its asizeof module, which unlike |
|||
|
|