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..."

link|improve this question
Is this homework? – Konrad Jul 13 '10 at 8:57
'hexadecimal form of its two's complement representation' ? How is that in the least bit helpful? – Konrad Jul 13 '10 at 8:58
Konrad, perhaps he's preparing a tool to show his students how it's done. Or he's curious. Or he's got an API to follow. Or a buddy bet him a case of beer that Perl could do it better. – sarnold Jul 13 '10 at 9:01
@Konrad,1: No, why? @Konrad,2: Sorry if it's not clear to you what I mean -- how would you put it? – none Jul 13 '10 at 9:28
@Konrad, if he's in a management class, then he's doing everything correctly (by delegating) :-) – JS. Jul 13 '10 at 17:42
feedback

5 Answers

up vote 2 down vote accepted

Here's a way (for 16 bit numbers):

>>> x=-123
>>> hex(((abs(x) ^ 0xffff) + 1) & 0xffff)
'0xff85'

(Might not be the most elegant way, though)

link|improve this answer
Thanks! (use abs(x)) – none Jul 13 '10 at 9:13
feedback
>>> x=123
>>> bits=16
>>> hex((1<<bits)-x)
'0xff85'
>>> bits=32
>>> hex((1<<bits)-x)
'0xffffff85'
link|improve this answer
feedback

Using the bitstring module:

>>> bitstring.BitArray('int:32=-312367').hex
'0xfffb3bd1'
link|improve this answer
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

link|improve this answer
Yes, bitstrings hex property seems to return what I need as well. Thanks. – none Jul 13 '10 at 9:17
feedback

The struct module performs conversions between Python values and C structs represented as Python bytes objects. The packed bytes object offers access to individual byte values. This can be used to display the underlying (C) integer representation.

>>> packed = struct.pack('>i',i) # big-endian integer
>>> type(packed)
<class 'bytes'>
>>> packed
b'\xff\xfb;\xd1'
>>> "%X%X%X%X" % tuple(packed)
'FFFB3BD1'
>>> 
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.