SyntaxFix
Write A Post
Hire A Developer
Questions
To add to @Christian's comment:
Replace all single or double quotes in a string:
s = "'asdfa sdfa'" import re re.sub("[\"\']", "", s)