pythont写入json文件
时间: 2023-10-18 16:11:21 浏览: 165
python读写json文件的简单实现
可以使用Python内置的json库来写入JSON文件。下面是一个简单的例子:
```
import json
data = {
"name": "John",
"age": 30,
"city": "New York"
}
with open("data.json", "w") as outfile:
json.dump(data, outfile)
```
这将创建一个名为"data.json"的文件,并将JSON数据写入其中。如果该文件已经存在,则将其覆盖。
你也可以使用json.dumps()函数将JSON数据转换为字符串,然后将其写入文件:
```
import json
data = {
"name": "John",
"age": 30,
"city": "New York"
}
with open("data.json", "w") as outfile:
json_string = json.dumps(data)
outfile.write(json_string)
```
这将创建一个名为"data.json"的文件,并将JSON字符串写入其中。
阅读全文