python保存dataframe到excel
时间: 2023-04-28 07:02:23 浏览: 129
python 将数据保存为excel的xls格式(实例讲解)
5星 · 资源好评率100%
可以使用pandas库中的to_excel()函数将DataFrame保存为Excel文件。具体步骤如下:
1. 导入pandas库
```python
import pandas as pd
```
2. 创建DataFrame
```python
df = pd.DataFrame({'姓名': ['张三', '李四', '王五'], '年龄': [20, 25, 30], '性别': ['男', '女', '男']})
```
3. 使用to_excel()函数保存DataFrame为Excel文件
```python
df.to_excel('data.xlsx', index=False)
```
其中,第一个参数为保存的文件名,第二个参数index=False表示不保存行索引。如果需要保存多个DataFrame到同一个Excel文件中,可以使用ExcelWriter类。
```python
writer = pd.ExcelWriter('data.xlsx')
df1.to_excel(writer, sheet_name='Sheet1', index=False)
df2.to_excel(writer, sheet_name='Sheet2', index=False)
writer.save()
```
阅读全文