vote up 3 vote down star
1

Hi

I want to print the bit representation of numbers onto console, so that I can see all operations that are being done on bits itself.

How can I possibly do it in python?

Thanks

flag

3 Answers

vote up 7 vote down

In Python 2.6+:

print bin(123)

Results in:

0b1111011

In python 2.x

>>> binary = lambda n: n>0 and [n&1]+binary(n>>1) or []
>>> binary(123)
[1, 1, 0, 1, 1, 1, 1]

Note, example taken from: "Mark Dufour" at http://mail.python.org/pipermail/python-list/2003-December/240914.html

link|flag
1  
you can further add bin = lambda b:'0b'+''.join(map(str,binary(b))), so it mimics 2.6+ completely – Anurag Uniyal Jun 28 at 4:04
vote up 1 vote down

This kind of thing?

>>> ord('a')
97
>>> hex(ord('a'))
'0x61'
>>> bin(ord('a'))
'0b1100001'
link|flag
vote up 0 vote down

The bin function

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.