Skip to content

Instantly share code, notes, and snippets.

@s7ephen
Created September 2, 2010 19:07
Show Gist options
  • Save s7ephen/562764 to your computer and use it in GitHub Desktop.
Save s7ephen/562764 to your computer and use it in GitHub Desktop.
>>> hex(int(bin(0x55),2))
'0x55'
>>> bin(0x55)
'0b1010101'
>>> type(bin(0x55))
<type 'str'>
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment