Is there a built in function in python which will convert a binary string, for example '111111111111', to the two's complement integer -1?
|
feedback
|
|
It's not built in, but if you want unusual length numbers then you could use the bitstring module.
The same object can equivalently be created in several ways, including
It just behaves like a string of bits of arbitrary length, and uses properties to get different interpretations:
| ||||
|
feedback
|
This works because:
| |||||||||
feedback
|
|
But '111111111111' as an integer is 4095. What did you actually mean? You could always
| |||||||||||
feedback
|
|
DANGER: gnibbler's answer (currently the highest ranked) isn't correct. Two's compliment subtracts off A function for two's compliment of an int...
Going from a binary string is particularly easy...
A bit more useful to me is going from hex values (32 bits in this example)...
| ||||
|
feedback
|
|
A couple of implementations (just an illustration, not intended for use):
| |||
|
feedback
|