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,654 questions

51,531 answers

573 users

How to get the number of bytes of a variable in Python

1 Answer

0 votes
import sys

s = "a"
# Get the size in bytes
size_in_bytes = sys.getsizeof(s)
print(f"The variable occupies {size_in_bytes} bytes.")

n = 14
# Get the size in bytes
size_in_bytes = sys.getsizeof(n)
print(f"The variable occupies {size_in_bytes} bytes.")



'''
run:

The variable occupies 42 bytes.
The variable occupies 28 bytes.

'''

 



answered Jun 4, 2025 by avibootz

Related questions

1 answer 59 views
3 answers 249 views
1 answer 65 views
1 answer 110 views
1 answer 78 views
1 answer 90 views
...