python中怎么将字典内容写入json文件
发表于:2024-11-27 作者:热门IT资讯网编辑
编辑最后更新 2024年11月27日,这篇文章主要介绍"python中怎么将字典内容写入json文件"的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇"python中怎么将字典内容写入json文件"文章
这篇文章主要介绍"python中怎么将字典内容写入json文件"的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇"python中怎么将字典内容写入json文件"文章能帮助大家解决问题。
python将字典内容写入json文件的方法:我们可以先使用json.dumps()函数将字典转换为字符串;然后再将内容写入json即可。json.dumps()函数负责对数据进行编码。
字典内容写入json时,需要用json.dumps将字典转换为字符串,然后再写入。
json也支持格式,通过参数indent可以设置缩进,如果不设置的话,则保存下来会是一行。
举例:
无缩进:
from collections import defaultdict, OrderedDictimport jsonvideo = defaultdict(list)video["label"].append("haha")video["data"].append(234)video["score"].append(0.3)video["label"].append("xixi")video["data"].append(123)video["score"].append(0.7)test_dict = { 'version': "1.0", 'results': video, 'explain': { 'used': True, 'details': "this is for josn test", }}json_str = json.dumps(test_dict)with open('test_data.json', 'w') as json_file: json_file.write(json_str)
有缩进:
from collections import defaultdict, OrderedDictimport jsonvideo = defaultdict(list)video["label"].append("haha")video["data"].append(234)video["score"].append(0.3)video["label"].append("xixi")video["data"].append(123)video["score"].append(0.7)test_dict = { 'version': "1.0", 'results': video, 'explain': { 'used': True, 'details': "this is for josn test", }}json_str = json.dumps(test_dict, indent=4)with open('test_data.json', 'w') as json_file: json_file.write(json_str)
关于"python中怎么将字典内容写入json文件"的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注行业资讯频道,小编每天都会为大家更新不同的知识点。