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'
>>> "{0:x}".format(i)
'-4c42f'
But I would like to see "FF..."
|
I have a negative integer (4 bytes) of which I would like to have the hexadecimal form of its two's complement representation.
But I would like to see "FF..." | |||||||||||
feedback
|
|
Here's a way (for 16 bit numbers):
(Might not be the most elegant way, though) | ||||
|
feedback
|
| |||
|
feedback
|
|
Using the bitstring module:
| ||||
|
feedback
|
|
See if this answer to a related question is what you're looking for: http://stackoverflow.com/questions/1604464/twos-complement-in-python/1605553#1605553 | |||
|
feedback
|
|
The
| |||
|
feedback
|