黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

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)文章