91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在python中將字典轉換成json

發布時間:2020-12-28 16:28:25 來源:億速云 閱讀:493 作者:Leah 欄目:開發技術

這篇文章將為大家詳細講解有關怎么在python中將字典轉換成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": "\u5fae\u8f6f\u96c5\u9ed1", "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": "\u5fae\u8f6f\u96c5\u9ed1", "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'] = 40
print(setting)
if __name__ == '__main__':
json_dumps()
json_dump()
json_loads()
json_load()

關于怎么在python中將字典轉換成json就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

嘉祥县| 金寨县| 石泉县| 二连浩特市| 澜沧| 河北省| 师宗县| 甘谷县| 奇台县| 华阴市| 茶陵县| 枞阳县| 阿瓦提县| 昌乐县| 钟祥市| 铜川市| 定结县| 安宁市| 大悟县| 民勤县| 河南省| 体育| 祁门县| 长葛市| 湖北省| 宁乡县| 滨海县| 林周县| 宜良县| 蒲江县| 新乡市| 呼和浩特市| 赣州市| 神池县| 佛坪县| 菏泽市| 滦平县| 从化市| 安徽省| 东乡| 栾川县|