vote up 41 vote down star
5

How do you express an integer as a binary number with Python literals?

I was easily able to find the answer for hex:

    >>> 0x12AF
    4783
    >>> 0x100
    256

and, octal:

    >>> 01267
    695
    >>> 0100
    64

How do you use literals to express binary in Python?


Summary of Answers

  • Python 2.5 and earlier: can express binary using int('01010101111',2) but not with a literal.
  • Python 2.5 and earlier: there is no way to express binary literals.
  • Python 2.6 beta: You can do like so: 0b1100111 or 0B1100111.
  • Python 2.6 beta: will also allow 0o27 or 0O27 (second character is the letter O) to represent an octal.
  • Python 3.0 beta: Same as 2.6, but will no longer allow the older 027 syntax for octals.
flag

43% accept rate

8 Answers

vote up 25 vote down check

For reference—future Python possibilities:
Starting with Python 2.6 you can express binary literals using the prefix 0b or 0B:

>>> 0b101111
47

You can also use the new bin function to get the binary representation of a number:

>>> bin(173)
'0b10101101'

Development version of the documentation: What's New in Python 2.6

link|flag
vote up 1 vote down

As far as I can tell Python, up through 2.5, only supports hexadecimal & octal literals. I did find some discussions about adding binary to future versions but nothing definite.

link|flag
vote up 0 vote down

I am pretty sure this is one of the things due to change in Python 3.0 with perhaps bin() to go with hex() and oct().

EDIT: lbrandy's answer is correct in all cases.

link|flag
vote up 19 vote down
>>> print int('01010101111',2)
687
>>> print int('11111111',2)
255

Another way.

edit: Apparently the only way. Since the other way doesn't actually work.

link|flag
vote up 2 vote down

@sparkes

I think I must be misunderstanding something about eval.

>>> eval('010')
8

How does eval know if it's evaluating binary digits?

link|flag
1  
In that case it's evaluting octal digits because the first digit is a '0' – Rory Oct 9 '08 at 14:50
vote up 1 vote down

@mark

It doesn't. Eval doesn't work as stated above. And you've just proven it.

>>> eval("10")
10

There's no way eval could know whether 10 is supposed to mean 2, in binary, or 10 in decimal.

link|flag
vote up 0 vote down

@sparkes

0 denotes octal, not binary. eval(010), for example, gives 8, not 2. It doesn't work.

>>> print eval('010')
8

That is not the right answer for a binary to decimal conversion. (However it is for an octal to decimal conversion).

link|flag
vote up 5 vote down

There is no way you can express binary literals (or rather integers as binary): here's a link to language reference on that matter

link|flag

Your Answer

Get an OpenID
or

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