do single and double quotes act differently in python code example
Example: python return double quotes instead of single
>>> import json
>>> List = ["A", "B"]
>>> print json.dumps(List)
["A", "B"]
>>> import json
>>> List = ["A", "B"]
>>> print json.dumps(List)
["A", "B"]