python single vs double quotes code example
Example 1: python put double quotes in string
"What a string, \"OMG DOUBLE QUOTES IN A STRING!!!\" whoa, those are cool"
Example 2: python return double quotes instead of single
>>> import json
>>> List = ["A", "B"]
>>> print json.dumps(List)
["A", "B"]