在JSON文件中添加字典元素,可以通过以下步骤实现:
import json
# 读取JSON文件
with open('data.json', 'r') as file:
data = json.load(file)
new_element = {
"new_key": "new_value"
}
data["dict_key"].update(new_element)
# 将更新后的数据写回JSON文件
with open('data.json', 'w') as file:
json.dump(data, file)
综上所述,以上步骤可以实现在JSON文件中添加字典元素的操作。请注意,代码中的"data.json"为示例文件名,实际应根据实际情况进行修改。
领取专属 10元无门槛券
手把手带您无忧上云