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

我有一个小问题!如何将对象或字符串添加到 Python 中已有的 JSON 文件中?

目前我已经写了那段代码。但它总是会添加一个新的 JSON 文件吗?我希望你知道我的问题。:D

json.dump(txtdictionary_main,open('filename-manager.json','w'),indent=4,sort_keys=True)


繁星coding
浏览 94回答 1
1回答

BIG阳

将文件转换为字典: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)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python