Hi all!
Lets put it in parts.
I got a socket receiving data OK and i got it in the \x31\x31\x31 format.
I know that i can get the same number, ripping the \x with something like
for i in data: print hex(ord(i))
so i got 31 in each case.
But if I want to add 1 to the data (so it shall be "32 32 32")to send it as response, how can i get it in \x32\x32\x32 again?
Thanks in advance ;)
Rag!