Answers for "python function to see memory location"

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
0

how to get the memory location of a varible in python

print(id(varible))
Posted by: Guest on July-22-2021

Code answers related to "python function to see memory location"

Python Answers by Framework

Browse Popular Code Answers by Language