使用panda模块,将python中的array按列写入已有的excel
时间: 2023-04-03 21:04:10 浏览: 126
Python库 | panda3d-1.10.4-cp36-cp36m-win_amd64.whl
可以使用pandas模块中的DataFrame和to_excel方法来实现将Python中的array按列写入已有的Excel文件。具体操作可以参考以下代码:
```python
import pandas as pd
# 读取已有的Excel文件
df = pd.read_excel('example.xlsx')
# 将Python中的array转换为DataFrame
arr = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
df_new = pd.DataFrame(arr)
# 将DataFrame按列写入Excel文件
with pd.ExcelWriter('example.xlsx', mode='a') as writer:
df_new.to_excel(writer, sheet_name='Sheet1', startcol=df.shape[1], index=False, header=False)
```
其中,`mode='a'`表示以追加模式打开Excel文件,`startcol=df.shape[1]`表示从已有数据的下一列开始写入,`index=False`和`header=False`表示不写入行索引和列名。
阅读全文