print string with quotes python code example
Example 1: python get the elements between quotes in string
import re
foo = 'SetVariables "a" "b" "c" '
bar = re.findall('"([^"]*)"', foo)
print(bar)
### ['a", 'b', 'c']
Example 2: python put quotes in string
# any character with a "\" before it is ignored as syntax and placed in the string
print("\"This should work for you\" I said")