json文件转为txt
时间: 2023-11-16 22:11:42 浏览: 74
你可以使用Python中的json和io模块将json文件转换为txt文件。以下是一个示例代码:
```python
import json
import io
# 读取json文件
with open('example.json', 'r') as f:
data = json.load(f)
# 将json数据写入txt文件
with io.open('example.txt', 'w', encoding='utf-8') as f:
f.write(json.dumps(data, ensure_ascii=False))
```
在上面的代码中,我们使用json.load()函数将json文件数据读取到变量data中。然后,我们使用io.open()函数打开一个txt文件,并使用json.dumps()函数将数据写入该文件中。请注意,我们使用ensure_ascii=False参数以确保任何Unicode字符都被正确编码。
运行该代码后,将生成一个名为example.txt的文件,其中包含与json文件相同的数据。
阅读全文