国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > Python > 正文

Python3實(shí)現(xiàn)的字典、列表和json對(duì)象互轉(zhuǎn)功能示例

2020-02-23 00:11:42
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

本文實(shí)例講述了Python3實(shí)現(xiàn)的字典、列表和json對(duì)象互轉(zhuǎn)功能。分享給大家供大家參考,具體如下:

python3可以使用json模塊操作json

json.dumps(): 對(duì)json進(jìn)行編碼,對(duì)應(yīng)php的json_encode()

json.loads(): 對(duì)json進(jìn)行解碼,對(duì)應(yīng)php的json_decode()

test.py

#!/usr/bin/python3import json#python字典類型轉(zhuǎn)換為json對(duì)象data = {  'id' : 1,  'name' : 'test1',  'age' : '1'}data2 = [{  'id' : 1,  'name' : 'test1',  'age' : '1'},{  'id' : 2,  'name' : 'test2',  'age' : '2'}]json_str = json.dumps(data)print ("python原始數(shù)據(jù):", repr(data))print ("json對(duì)象:", json_str)json_str2 = json.dumps(data2)print ("python原始數(shù)據(jù):", repr(data2))print ("json對(duì)象:", json_str2)# 將json對(duì)象轉(zhuǎn)換為python字典data3 = json.loads(json_str)print ("data3['name']: ", data3['name'])print ("data3['age']: ", data3['age'])

執(zhí)行結(jié)果

[root@mail pythonCode]# python3 test.py
python原始數(shù)據(jù): {'id': 1, 'name': 'test1', 'age': '1'}
json對(duì)象: {"id": 1, "name": "test1", "age": "1"}
python原始數(shù)據(jù): [{'id': 1, 'name': 'test1', 'age': '1'}, {'id': 2, 'name': 'test2', 'age': '2'}]
json對(duì)象: [{"id": 1, "name": "test1", "age": "1"}, {"id": 2, "name": "test2", "age": "2"}]
data3['name']:  test1
data3['age']:  1

PS:關(guān)于json操作,這里再為大家推薦幾款比較實(shí)用的json在線工具供大家參考使用:

在線JSON代碼檢驗(yàn)、檢驗(yàn)、美化、格式化工具:
http://tools.jb51.net/code/json

JSON在線格式化工具:
http://tools.jb51.net/code/jsonformat

在線XML/JSON互相轉(zhuǎn)換工具:
http://tools.jb51.net/code/xmljson

json代碼在線格式化/美化/壓縮/編輯/轉(zhuǎn)換工具:
http://tools.jb51.net/code/jsoncodeformat

在線json壓縮/轉(zhuǎn)義工具:
http://tools.jb51.net/code/json_yasuo_trans

更多Python相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Python操作json技巧總結(jié)》、《Python編碼操作技巧總結(jié)》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》、《Python入門與進(jìn)階經(jīng)典教程》及《Python文件與目錄操作技巧匯總》

希望本文所述對(duì)大家Python程序設(shè)計(jì)有所幫助。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 诏安县| 衡山县| 井陉县| 县级市| 江华| 原阳县| 郯城县| 北辰区| 海林市| 普宁市| 特克斯县| 伊吾县| 娄烦县| 淅川县| 吉安市| 瓦房店市| 闵行区| 扎鲁特旗| 准格尔旗| 凌海市| 顺义区| 大埔县| 仙居县| 湟中县| 芜湖市| 赤水市| 仙桃市| 黔东| 会同县| 乌拉特中旗| 建昌县| 邛崃市| 靖宇县| 田林县| 贵南县| 双桥区| 师宗县| 鹿邑县| 清苑县| 景东| 左贡县|