Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

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 75 views
1 answer 92 views
4 answers 192 views
2 answers 110 views
...