久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

python字典與json轉換的方法總結

瀏覽:85日期:2022-07-01 09:07:09

在python中json分別由列表和字典組成,本文主要介紹python中字典與json相互轉換的方法。使用json.dumps可以把字典轉成json字符串。使用json.loads可以把json字符串轉為字典類型的數據。

1、字典轉json

使用json.dumps

json.dumps是對python對象編碼成json對象,可以把字典轉成json字符串。

方法格式

#字典轉換成json字符串 json.dumps(dict)

實例

# 創建字典info_dict = {’name’: ’Joe’, ’age’: 20, ’job’: ’driver’}# dumps 將數據轉換成字符串info_json = json.dumps(info_dict,sort_keys=False, indent=4, separators=(’,’, ’: ’))# 顯示數據類型print(type(info_json))f = open(’info.json’, ’w’)f.write(info_json)2、json轉字典

使用json.loads

json.loads是將json對象解碼成python對象,即用于將字典類型的數據轉成json字符串。

方法格式

#json字符串轉換成字典json.loads(json_str)

使用實例

In [25]: j Out[25]: ’{'name': 'mary', 'age': 21}’ In [26]: result = json.loads(j) In [27]: result Out[27]: {’name’: ’mary’, ’age’: 21} In [28]: type(result) Out[28]: dict

python字典和json字符串相互轉化的實例擴展

import json'''dumps:將python中的字典轉換為字符串output:{’fontFamily’: ’微軟雅黑’, ’fontSize’: 12, ’BaseSettings’: {’font’: 1, ’size’: {’length’: 40, ’wigth’: 30}}}{'fontFamily': 'u5faeu8f6fu96c5u9ed1', 'fontSize': 12, 'BaseSettings': {'font': 1, 'size': {'length': 40, 'wigth': 30}}}'''def json_dumps():json_dict = {’fontFamily’: ’微軟雅黑’, ’fontSize’: 12, ’BaseSettings’: {’font’: 1, ’size’: {’length’: 40, ’wigth’: 30}}}print(type(json_dict))print(json_dict)json_str = json.dumps(json_dict)print(type(json_str))print(json_str)'''dump:將數據寫入json文件中'''def json_dump():json_dict = {’fontFamily’: ’微軟雅黑’, ’fontSize’: 12, ’BaseSettings’: {’font’: 1, ’size’: {’length’: 40, ’wigth’: 30}}}with open('../file/record.json', 'w')as f:json.dump(json_dict, f)print('finished')'''loads:將字符串轉換為字典output:{'fontFamily': '微軟雅黑', 'fontSize': 12, 'BaseSettings': {'font': 1, 'size': {'length': 40, 'wigth': 30}}}{’fontFamily’: ’微軟雅黑’, ’fontSize’: 12, ’BaseSettings’: {’font’: 1, ’size’: {’length’: 40, ’wigth’: 30}}}'''def json_loads():json_str = ’{'fontFamily': 'u5faeu8f6fu96c5u9ed1', 'fontSize': 12, 'BaseSettings': {'font': 1, 'size': {'length': 40, 'wigth': 30}}}’print(type(json_str))print(json_str)json_dict = json.loads(json_str)print(type(json_dict))print(json_dict)'''load:讀文件,并把字符串變換為Python數據類型output:40{’fontFamily’: ’微軟雅黑’, ’fontSize’: 12, ’BaseSettings’: {’font’: 1, ’size’: {’length’: 40, ’wigth’: 30}}}'''def json_load():f = open('../file/record.json', encoding=’utf-8’)setting = json.load(f)print(setting[’BaseSettings’][’size’][’length’])setting[’BaseSettings’][’size’][’length’] = 40print(setting)if __name__ == ’__main__’:json_dumps()json_dump()json_loads()json_load()

到此這篇關于python字典與json轉換的方法總結的文章就介紹到這了,更多相關python中字典與json相互轉換的方法內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 屯门区| 绥德县| 水富县| 获嘉县| 泸州市| 卢氏县| 莫力| 连南| 颍上县| 谢通门县| 子长县| 巩留县| 比如县| 广灵县| 襄樊市| 体育| 福州市| 太湖县| 邻水| 宝鸡市| 温州市| 兴和县| 延安市| 临武县| 怀宁县| 新河县| 颍上县| 大港区| 商都县| 常德市| 米易县| 绥芬河市| 馆陶县| 葫芦岛市| 合阳县| 什邡市| 类乌齐县| 惠州市| 简阳市| 福建省| 大兴区|