Skip to content

Instantly share code, notes, and snippets.

@pralabhsaxena05
Created December 10, 2021 07:07
Show Gist options
  • Save pralabhsaxena05/c3e789140b3ab7bd108abbee5e9788e2 to your computer and use it in GitHub Desktop.
Save pralabhsaxena05/c3e789140b3ab7bd108abbee5e9788e2 to your computer and use it in GitHub Desktop.
import sys
myvar = 15
mylist = [1,2,3,4,5]
mystr = "Hello world!"
print(sys.getsizeof(myvar))
print(sys.getsizeof(mylist))
print(sys.getsizeof(mystr))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment