python 的json append
时间: 2023-10-16 21:23:40 浏览: 232
python 操作json文件
在 Python 中,可以使用 json 模块的 dump 函数将数据以 JSON 格式写入文件。如果要为 JSON 数据添加新的元素,可以将数据加载到 Python 中,并使用 append 方法向 JSON 数组添加新的元素。例如:
```
import json
# 读取 JSON 文件
with open('data.json', 'r') as f:
data = json.load(f)
# 在数组中添加新元素
data.append({'name': 'Bob', 'age': 25})
# 将新的 JSON 数据写入文件
with open('data.json', 'w') as f:
json.dump(data, f)
```
阅读全文