将excel转换为json文件
时间: 2023-06-02 08:04:56 浏览: 170
excel文件转成json
可以使用Python中的pandas库将Excel文件读取为DataFrame,再将DataFrame转换为JSON格式。具体代码如下:
```
import pandas as pd
df = pd.read_excel('your_excel_file.xlsx') # 读取Excel文件
json_str = df.to_json(orient='records') # 转换为JSON格式
# 将JSON字符串写入文件
with open('output.json', 'w', encoding='utf-8') as f:
f.write(json_str)
```
其中,`orient='records'`表示将每行数据转换为JSON对象,最终生成的JSON文件格式如下:
```
[
{
"column1": "value1",
"column2": 123,
"column3": true
},
{
"column1": "value2",
"column2": 456,
"column3": false
},
...
]
```
阅读全文