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