How do I replace " with \" in a python string?
I have a string with double quotes:
s = 'a string with "double" quotes'
I want to escape the double quotes with one backslash.
Doing the following doesn't quite work, it escapes with two backslashes:
s.replace('"', '\\"')
'a string with \\"double\\" quotes'
Printing the output of that string shows what I want. But I don't just want to print the correct string, I want it saved in a variable. Can anyone help me with the correct magical regular expression?