如何快速的将json转成excel

首先安装 pandas

pip install pandas

然后就很简单了…

1
2
3
4
import pandas as pd

df = pd.read_json('a.json')
df.to_excel("a.xlsx")

推荐文章