python pandas追加写入excel
时间: 2023-04-26 19:04:40 浏览: 717
Python pandas如何向excel添加数据
使用Python的pandas库可以很方便地将数据写入Excel文件中。要追加写入Excel文件,可以使用pandas的to_excel()函数,并设置参数mode='a',表示追加模式。具体代码如下:
```python
import pandas as pd
# 读取Excel文件
df = pd.read_excel('data.xlsx')
# 追加写入Excel文件
df.to_excel('data.xlsx', sheet_name='Sheet1', index=False, mode='a')
```
其中,'data.xlsx'是要写入的Excel文件名,'Sheet1'是要写入的工作表名,index=False表示不写入行索引。如果要写入多个工作表,可以在to_excel()函数中多次调用,并设置不同的sheet_name参数。
阅读全文