python合并两个excel
时间: 2023-09-11 13:07:24 浏览: 100
python合并excel教学文档
可以使用Python中的pandas库来合并两个Excel文件。
以下是示例代码:
```python
import pandas as pd
# 读取两个Excel文件
df1 = pd.read_excel('file1.xlsx')
df2 = pd.read_excel('file2.xlsx')
# 合并两个DataFrame
merged_df = pd.concat([df1, df2], ignore_index=True)
# 将合并后的数据保存到新的Excel文件中
merged_df.to_excel('merged_file.xlsx', index=False)
```
在上面的代码中,首先使用pandas的read_excel函数读取两个Excel文件,然后使用concat函数将两个DataFrame合并成一个,最后使用to_excel函数将合并后的数据保存到一个新的Excel文件中。
需要注意的是,如果两个Excel文件中的列名不同或顺序不同,需要先进行数据清洗和处理,确保两个DataFrame的列名和顺序相同才能进行合并。
阅读全文