Printing a hex character and prefixing it correctly

Andreas Tawn andreas.tawn at ubisoft.com
Fri May 15 12:49:45 EDT 2009


> If I have an integer k, for instance;
> 
> k = 32 // BASE 10
> 
> How do I get print to print it out in HEX and PREFIXED with 0x? What
> is the PROPER WAY?
> 
> This does not work:
> 
>   print "This is hex 32: ", int(k, 16)
> 
> Xav

k = 32

print "This is hex 32: ", hex(k)

Cheers,

Drea



More information about the Python-list mailing list