Python вернуть двойные цитаты вместо одиночных

>>> import json
>>> List = ["A", "B"]
>>> print json.dumps(List)
["A", "B"]
Successful Stag