Skip to content

Instantly share code, notes, and snippets.

@blixt
Created June 16, 2011 15:42
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 blixt/1029532 to your computer and use it in GitHub Desktop.
Save blixt/1029532 to your computer and use it in GitHub Desktop.
Simple bin() function
def bin(i):
s = ''
while i:
s = str(i & 1) + s
i >>= 1
return '0b' + s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment