從 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}'