python 定义json,并写入
时间: 2023-07-05 12:27:00 浏览: 73
python读写json文件的简单实现
你可以使用 Python 的内置模块 json 来定义和写入 JSON 文件。下面是一个示例:
```python
import json
# 定义一个字典
data = {
"name": "John",
"age": 30,
"city": "New York"
}
# 将字典转换为 JSON 格式的字符串
json_data = json.dumps(data)
# 将 JSON 格式的字符串写入文件
with open("data.json", "w") as json_file:
json_file.write(json_data)
```
这个示例中,我们首先定义了一个字典 data,然后使用 json.dumps() 方法将其转换为 JSON 格式的字符串。接着,我们使用 Python 的 with 语句打开一个文件,将 JSON 格式的字符串写入文件中。最终,JSON 数据会被写入名为 "data.json" 的文件中。
阅读全文