Is there a way to declare a string variable in python such that everything inside of it is automatically escaped, or has its literal character value?
I\'m not>
Raw string literals:
>>> r'abc\dev\t' 'abc\\dev\\t'