Is there a built in function in python which will convert a binary string, for example '111111111111', to the two's complement integer -1?

link|improve this question
feedback

5 Answers

It's not built in, but if you want unusual length numbers then you could use the bitstring module.

>>> from bitstring import BitArray
>>> a = BitArray(bin='111111111111')
>>> a.int
-1

The same object can equivalently be created in several ways, including

>>> b = BitArray(int=-1, length=12)

It just behaves like a string of bits of arbitrary length, and uses properties to get different interpretations:

>>> print a.int, a.uint, a.bin, a.hex, a.oct
-1 4095 0b111111111111 0xfff 0o7777
link|improve this answer
feedback
>>> bits_in_word=12
>>> int('111111111111',2)-(1<<bits_in_word)
-1

This works because:

The two's complement of a binary number is defined as the value obtained by subtracting the number from a large power of two (specifically, from 2^N for an N-bit two's complement). The two's complement of the number then behaves like the negative of the original number in most arithmetic, and it can coexist with positive numbers in a natural way.

link|improve this answer
2  
note: it won't work for '0111..'. – J.F. Sebastian Oct 22 '09 at 18:52
1  
int(x, 2) - (1 << len(x) if x[0] == '1' else 0) – eryksun May 26 '11 at 15:42
feedback

But '111111111111' as an integer is 4095. What did you actually mean?

You could always

int('111111111111',2)
link|improve this answer
In two's compliment form isn't 111111111111 = -1 because the first bit is the sign and then the you go backwards from 11111111111 to 00000000000 starting at -1? – Jim Oct 22 '09 at 1:16
Ok yes, I'm sorry I don't know why I didn't mention that. Is there an built in function that could handle that? I know struct.unpack will work but I can only figure it out for 16 bit or 8 bit words. – Jim Oct 22 '09 at 1:19
@Jim, that depends on your word size. If yours is 12 bits then, yes, that value is -1. If it's 13 or more bits, the value is 4095, (not 4096, @Jonathan). If your word size is less than 12 bits, well, I don't know WTH the value is :-) – paxdiablo Oct 22 '09 at 1:21
Well, Python uses integers significantly larger than the 12 bit integers where 4095 would be equal to -1. (Actually, Python's integers are either 32 bit or "unlimited" in size.) So you'll need to do some bit banging yourself if you want to emulate 12 bit signed integers. – ndim Oct 22 '09 at 1:22
Thanks devil's peace; corrected. – Jonathan Feinberg Oct 22 '09 at 1:56
show 3 more comments
feedback

DANGER: gnibbler's answer (currently the highest ranked) isn't correct.
Sadly, I can't figure out how to add a comment to it.

Two's compliment subtracts off (1<<bits) if the highest bit is 1. Taking 8 bits for example, this gives a range of 127 to -128.

A function for two's compliment of an int...

def twos_comp(val, bits):
    """compute the 2's compliment of int value val"""
    if( (val&(1<<(bits-1))) != 0 ):
        val = val - (1<<bits)
    return val

Going from a binary string is particularly easy...

binary_string = '1111' # or whatever... no '0b' prefix
out = twos_comp(int(binary_string,2), len(binary_string))

A bit more useful to me is going from hex values (32 bits in this example)...

hex_string = '0xFFFFFFFF' # or whatever... '0x' prefix doesn't matter
out = twos_comp(int(val,16), 32)
link|improve this answer
feedback

A couple of implementations (just an illustration, not intended for use):

def to_int(bin):
    x = int(bin, 2)
    if bin[0] == '1': # "sign bit", big-endian
       x -= 2**len(bin)
    return x

def to_int(bin): # from definition
    n = 0
    for i, b in enumerate(reversed(bin)):
        if b == '1':
           if i != (len(bin)-1):
              n += 2**i
           else: # MSB
              n -= 2**i 
    return n
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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