Skip to content

Instantly share code, notes, and snippets.

@ishashankkumar
Created November 15, 2019 10:45
Show Gist options
  • Save ishashankkumar/a324f2654cd432b4d73aa1aae8682bdc to your computer and use it in GitHub Desktop.
Save ishashankkumar/a324f2654cd432b4d73aa1aae8682bdc to your computer and use it in GitHub Desktop.
import sys
>>> sys.getsizeof(a)
24
>>> d = 2.5
>>> sys.getsizeof(d)
24
>>> e = "sss"
>>> sys.getsizeof(e)
40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment