python将dataframe写入excel
时间: 2023-04-29 16:03:56 浏览: 139
python之DataFrame实现excel合并单元格
5星 · 资源好评率100%
可以使用pandas库中的to_excel()方法将dataframe写入excel。
示例代码:
```
import pandas as pd
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6]})
df.to_excel('test.xlsx', index=False)
```
上述代码将dataframe "df" 存储为 "test.xlsx" 文件中,可以用Excel打开。
阅读全文