How to get the memory usage of an object in Python

1 Answer

0 votes
from sys import getsizeof
  
n = 1357
print(getsizeof(n), 'bytes') 
  
n = 3.14
print(getsizeof(n), 'bytes') 
  
ch = 'a'
print(getsizeof(ch), 'bytes') 
 
s = 'python'
print(getsizeof(s), 'bytes') 
 
lst = [1, 2, 3, 4]
print(getsizeof(lst), 'bytes')  
 
  
  
  
'''
run:
  
28 bytes
24 bytes
50 bytes
55 bytes
88 bytes

'''

 



answered Apr 8, 2019 by avibootz
edited Jun 17, 2022 by avibootz

Related questions

1 answer 85 views
1 answer 108 views
4 answers 207 views
2 answers 116 views
...