Python3 JSON 解析
python3 json 解析
json是一種輕量級(jí)的數(shù)據(jù)交互格式,采用完全獨(dú)立于編程語(yǔ)言的文本格式來(lái)存儲(chǔ)和表示數(shù)據(jù)。和xml相比,它更小巧,但描述能力卻不差,更適合于在網(wǎng)絡(luò)上傳輸數(shù)據(jù)。
python3 中可以使用 json 模塊來(lái)對(duì) json 數(shù)據(jù)進(jìn)行編解碼,它包含了兩個(gè)函數(shù):
- json.dumps(): 對(duì)數(shù)據(jù)進(jìn)行編碼。
- json.loads(): 對(duì)數(shù)據(jù)進(jìn)行解碼。
在json 的編解碼過(guò)程中,python 的原始類(lèi)型與 json 類(lèi)型會(huì)相互轉(zhuǎn)換,具體的轉(zhuǎn)化對(duì)照如下:
python 編碼為 json 類(lèi)型轉(zhuǎn)換對(duì)應(yīng)表:
python | json |
---|---|
dict | object |
list, tuple | array |
str | string |
int, float, int- & float-derived enums | number |
true | true |
false | false |
none | null |
json 解碼為 python 類(lèi)型轉(zhuǎn)換對(duì)應(yīng)表:
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 數(shù)據(jù)結(jié)構(gòu)轉(zhuǎn)換為json:
范例(python 3.0+)
#!/usr/bin/python3 import json # python 字典類(lèi)型轉(zhuǎn)換為 json 對(duì)象 data = {
'no' : 1,
'name' : 'yapf',
'url' : 'http://' }
json_str = json.dumps(data) print ("python 原始數(shù)據(jù):", repr(data)) print ("json 對(duì)象:", json_str)
相關(guān)文章
- Python 教程
- Python 變量類(lèi)型
- Python while 循環(huán)語(yǔ)句
- Python 函數(shù)
- Python File 方法
- Python 正則表達(dá)式
- Python 網(wǎng)絡(luò)編程
- Python 詞典
- Python 棧
- Python 遞歸
- Python 樹(shù)遍歷算法
- Python3 環(huán)境搭建
- Python3 數(shù)據(jù)類(lèi)型
- Python3 數(shù)字(Number)
- Python3 字符串(String)
- Python3 列表(List)
- Python3 正則表達(dá)式
- Python3 SMTP發(fā)送郵件
- Python3 XML 解析
- Python3 內(nèi)置函數(shù)