I want to convert the escaped characters back to the original form:
>>> myString="\\10.10.10.10\view\a"
>>> myString
'\\10.10.10.10\x0biew\x07'
>>>desiredString=fun(myString)
>>>print desiredString
'\\10.10.10.10\view\a'
I researched quite a lot and could not find a solution I am using Python2.6.