Answers for "how to calculate memory used in python"

1

python how much memory does a variable need

from sys import getsizeof
a = 42
getsizeof(a) # size of object in bytes
Posted by: Guest on May-18-2021
11

python memory usage

import sys
a, b, c,d = "abcde" ,"xy", 2, 15.06
print(sys.getsizeof(a))
print(sys.getsizeof(b))
print(sys.getsizeof(c))
print(sys.getsizeof(d))

#Running the above code gives us the following result
38
35
24
24
Posted by: Guest on September-19-2020
1

python memory usage

import sys 
variable = 30 
print(sys.getsizeof(variable)) # 24
Posted by: Guest on February-16-2021

Code answers related to "how to calculate memory used in python"

Python Answers by Framework

Browse Popular Code Answers by Language