从 Python dict 创建 JSON
import json
d = {
'foo': 'bar',
'alice': 1,
'wonderland': [1, 2, 3]
}
json.dumps(d)
以上代码段将返回以下内容:
'{"wonderland": [1, 2, 3], "foo": "bar", "alice": 1}'
import json
d = {
'foo': 'bar',
'alice': 1,
'wonderland': [1, 2, 3]
}
json.dumps(d)
以上代码段将返回以下内容:
'{"wonderland": [1, 2, 3], "foo": "bar", "alice": 1}'