python 编辑json
时间: 2023-07-08 08:47:14 浏览: 93
Python库 | json_schema_discovery-0.1.0-py3-none-any.whl
要编辑 JSON,可以使用 Python 内置的 `json` 模块。下面是一个简单的示例代码,演示了如何读取 JSON 文件、修改其中的数据,并将修改后的内容保存回文件中:
```python
import json
# 读取 JSON 文件
with open('data.json', 'r') as f:
data = json.load(f)
# 修改数据
data['name'] = 'Alice'
data['age'] = 30
# 将修改后的数据保存回文件
with open('data.json', 'w') as f:
json.dump(data, f)
```
在这个例子中,我们假设有一个名为 `data.json` 的 JSON 文件,其内容如下:
```json
{
"name": "Bob",
"age": 25
}
```
代码中,首先使用 `json.load` 函数读取文件中的数据,然后修改其中的 `name` 和 `age` 字段,最后使用 `json.dump` 函数将修改后的数据保存回文件中。
阅读全文