Tagged Questions
2
votes
5answers
724 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'
...