replace double quotes to single quotes in python code example
Example 1: python return double quotes instead of single
>>> import json
>>> List = ["A", "B"]
>>> print json.dumps(List)
["A", "B"]
Example 2: how to print in double quotes in python
# There are two ways -
print('"By using single quotes"')
print("\"Or By using escape character double quotes\"")