I'm getting confused with python, hex, int, LSB. I have a number. Let's say
number=1000
i write it in hex format :
new = '%08x' % number
#000003e8
Now i need to print these number in these format:
\xe8\x03\x00\x00
Any help would be appreciated! Thanks!