In the python 2 command line by running:
>>> print r"\x72"
\x72
python will return: \x72 But if I do:
>>> a = "\x72"
>>> print a
r
it will print "r". I am also aware that if I do:
>>> a = r"\x72"
>>> print a
\x72
But what I want to be able to do is to take:
>>> a = "\x72"
and make it so I can print it as if it were:
r"\x73"
How do I convert that?