¡@

Home 

python Programming Glossary: escaped_data

Python: unescape “\xXX”

http://stackoverflow.com/questions/10944907/python-unescape-xxx

&ldquo xXX&rdquo I have a string with escaped data like escaped_data ' x50 x51' print escaped_data # gives ' x50 x51' What Python.. with escaped data like escaped_data ' x50 x51' print escaped_data # gives ' x50 x51' What Python function would unescape it so.. would unescape it so I would get raw_data unescape escaped_data print raw_data # would print PQ python share improve this..