how much memory does the integer 5 consume in plain python 3f

Solutions on MaxInterview for how much memory does the integer 5 consume in plain python 3f by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "how much memory does the integer 5 consume in plain python 3f"
Máximo
28 Feb 2017
1import sys
2 
3sys.getsizeof(4)
424
Inès
25 Apr 2020
1import sys
2 
3sys.getsizeof(5)
424
5