Tagged Questions
5
votes
4answers
4k views
Two's Complement in Python
Is there a built in function in python which will convert a binary string, for example '111111111111', to the two's complement integer -1?
2
votes
5answers
660 views
How to print a signed integer as hexadecimal number in two's complement with python?
I have a negative integer (4 bytes) of which I would like to have the hexadecimal form of its two's complement representation.
>>> i = int("-312367")
>>> "{0}".format(i)
'-312367'
...
1
vote
4answers
994 views
Python - Applying Two's Complement to a String
I am trying to add the Two's Complement to a Binary number represented with a string.
Assuming the string has already been flipped, how would I go about "adding" 1 to the last character, and replacing ...