的方法有多种。下面是一种常见的方法:
import json
with open('data.json', 'r') as file:
data = json.load(file)
data["new_key"] = "new_value"
with open('data.json', 'w') as file:
json.dump(data, file)
完整的代码如下:
import json
with open('data.json', 'r') as file:
data = json.load(file)
data["new_key"] = "new_value"
with open('data.json', 'w') as file:
json.dump(data, file)
这样,我们就成功地向现有的JSON文件中添加了新的元素。请注意,以上代码仅适用于JSON文件的简单修改,如果JSON文件较大或结构复杂,可能需要使用其他方法进行处理。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云