Python3 JSON 解析
python3 json 解析
json是一種輕量級的數據交互格式,采用完全獨立于編程語言的文本格式來存儲和表示數據。和xml相比,它更小巧,但描述能力卻不差,更適合于在網絡上傳輸數據。
python3 中可以使用 json 模塊來對 json 數據進行編解碼,它包含了兩個函數:
- json.dumps(): 對數據進行編碼。
- json.loads(): 對數據進行解碼。
在json 的編解碼過程中,python 的原始類型與 json 類型會相互轉換,具體的轉化對照如下:
python 編碼為 json 類型轉換對應表:
python | json |
---|---|
dict | object |
list, tuple | array |
str | string |
int, float, int- & float-derived enums | number |
true | true |
false | false |
none | null |
json 解碼為 python 類型轉換對應表:
json | python |
---|---|
object | dict |
array | list |
string | str |
number (int) | int |
number (real) | float |
true | true |
false | false |
null | none |
json.dumps 與 json.loads 范例
以下范例演示了 python 數據結構轉換為json:
范例(python 3.0+)
#!/usr/bin/python3 import json # python 字典類型轉換為 json 對象 data = {
'no' : 1,
'name' : 'yapf',
'url' : 'http://www.slktour.com' }
json_str = json.dumps(data) print ("python 原始數據:", repr(data)) print ("json 對象:", json_str)