Skip to content

Instantly share code, notes, and snippets.

@sagarun
Created May 29, 2013 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sagarun/5669975 to your computer and use it in GitHub Desktop.
Save sagarun/5669975 to your computer and use it in GitHub Desktop.
64 bit or 32 bit? python magic
is_64bit = sys.maxsize > 2**32
if is_64bit:
print "64 bit"
else:
print "32 bit"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment