SyntaxFix
Write A Post
Hire A Developer
Questions
You should be using the json module. json.dumps(string). It can also serialize other python data types.
json
json.dumps(string)
import json >>> s = 'my string with "double quotes" blablabla' >>> json.dumps(s) <<< '"my string with \\"double quotes\\" blablabla"'