include double quotes in string python code example
Example 1: 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")
Example 2: python return double quotes instead of single
>>> import json
>>> List = ["A", "B"]
>>> print json.dumps(List)
["A", "B"]