python将json转换为excel
时间: 2023-04-30 15:02:39 浏览: 343
Json批量转excel的工具(python脚本)
5星 · 资源好评率100%
可以使用第三方库pandas将json转换为excel。首先需要使用pandas的read_json()函数将json数据转换为pandas的DataFrame格式,然后使用DataFrame的to_excel()函数将其转换为excel格式。
示例代码:
```
import pandas as pd
# 读入json数据
json_data = '{"name": {"0": "John", "1": "Mike", "2": "Sara"}, "age": {"0": 30, "1": 25, "2": 35}}'
df = pd.read_json(json_data)
# 将数据转换为excel格式并保存
df.to_excel('data.xlsx', index=False)
```
上面的代码将json数据转换为了excel格式并保存到了本地文件中。
阅读全文