Skip to content

Instantly share code, notes, and snippets.

@1st
Last active August 29, 2015 14:12
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 1st/ca257397b66e6aebe7b4 to your computer and use it in GitHub Desktop.
Save 1st/ca257397b66e6aebe7b4 to your computer and use it in GitHub Desktop.
2015-binary.py
"""
2015 year calculations.
>>> # we missing 32 in this year pow(2,5)
>>> pow(2,5)
32
>>> 1024+512+256+128+64+0+16+8+4+2+1
2015
>>> bin(2015)
'0b11111011111'
>>> # 11111 0 11111
>>> # 5 pow(2,5) 5
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment