pandas读取excel数据后写入另一个excel
时间: 2023-12-11 12:04:42 浏览: 154
解决Python pandas df 写入excel 出现的问题
可以按照如下代码将pandas读取的excel数据写入另一个excel文件中:
```python
import pandas as pd
# 读取excel数据
df = pd.read_excel('input.xlsx')
# 对数据进行处理
# 写入另一个excel
df.to_excel('output.xlsx', index=False)
```
在上述代码中,首先使用pandas的`read_excel()`方法读取excel数据,然后对数据进行处理,最后使用`to_excel()`方法将数据写入另一个excel文件中。其中,`to_excel()`方法的第一个参数指定输出文件的文件名,第二个参数`index=False`表示不输出行索引。
阅读全文