python将json文件转为csv,并保存为utf-8编码
时间: 2023-06-16 07:06:25 浏览: 264
利用python将json数据转换为csv格式的方法
4星 · 用户满意度95%
可以使用Python内置的csv和json模块来实现将json文件转为csv,并保存为utf-8编码的操作。以下是示例代码:
```python
import csv
import json
# 读取json文件
with open('data.json', 'r', encoding='utf-8') as f:
data = json.load(f)
# 写入csv文件
with open('data.csv', 'w', encoding='utf-8', newline='') as f:
writer = csv.writer(f)
# 写入表头
writer.writerow(['name', 'age', 'gender'])
# 写入数据
for item in data:
writer.writerow([item['name'], item['age'], item['gender']])
```
在这个示例中,我们首先使用json模块读取名为“data.json”的json文件,然后使用csv模块将数据写入名为“data.csv”的csv文件。在写入csv文件时,我们使用了utf-8编码,并且将newline参数设置为空字符串,以防止写入csv文件时出现空行。
阅读全文