In Python I want to tranform the integer 3892 into a hexcode with the given format and the result \x00\x00\x0F\x34. How can this be achieved?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
You are converting to a binary representation of the number, not so much a hex representation (although Python will display the bytes as hex). Use the Demonstration:
Note that the ASCII code for '4' is 0x34, python only displays bytes with a '>' in the formatting code above means 'big endian' and 'I' is an unsigned int conversion (4 bytes). |
|||||||||
|
gives:
|
|||||||
|
|
If you have numpy installed:
|
|||
|
0x0f34on a big-endian machine, or do you mean literally the character string"\\x00\\x00\\x0F\\x34"? – martineau Jul 27 '12 at 18:33