为了账号安全,请及时绑定邮箱和手机立即绑定

如何将字典中的字符串添加到python中的json文件中

如何将字典中的字符串添加到python中的json文件中

繁星coding 2023-10-18 16:12:53
我有一个小问题!如何将对象或字符串添加到 Python 中已有的 JSON 文件中?目前我已经写了那段代码。但它总是会添加一个新的 JSON 文件吗?我希望你知道我的问题。:Djson.dump(txtdictionary_main,open('filename-manager.json','w'),indent=4,sort_keys=True)
查看完整描述

1 回答

?
BIG阳

TA贡献1859条经验 获得超6个赞

将文件转换为字典:

with open('filename-manager.json') as json_file:
  txtdictionary_main = json.load(json_file)

将值添加到字典中:

txtdictionary_main[key] = value

将字典转换回 JSON:

json_object = json.dumps(txtdictionary_main , indent = 4)


查看完整回答
反对 回复 2023-10-18
  • 1 回答
  • 0 关注
  • 93 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信