json 文件Python 保存
时间: 2023-11-19 17:01:33 浏览: 132
python 操作json文件
可以使用Python中的json模块来保存json文件。具体步骤如下:
1. 导入json模块
```python
import json
```
2. 定义一个字典或列表,表示要保存的json数据
```python
data = {"name": "John", "age": 30, "city": "New York"}
```
3. 使用json.dump()函数将数据写入json文件中。该函数接受两个参数:要写入的数据和要写入的文件对象。如果文件不存在,则会自动创建。
```python
with open('data.json', 'w') as f:
json.dump(data, f)
```
完整示例代码:
```python
import json
data = {"name": "John", "age": 30, "city": "New York"}
with open('data.json', 'w') as f:
json.dump(data, f)
```
运行该程序后,会在当前目录下生成一个名为data.json的文件,内容如下:
```json
{"name": "John", "age": 30, "city": "New York"}
```
阅读全文