I am testing struct module because I would like to send simple commands with parameters in bytes (char) and unsigned int to another application.
However I found some
"\xNN" is just the way to represent a non-prinatble character ... it will give you the prinable character if it can
"\xNN"
print "\x0a" == "\n" == chr(10)