Python合并excel数据
时间: 2023-11-08 22:04:13 浏览: 82
excel合并,excel合并单元格怎么弄,Python
5星 · 资源好评率100%
你可以使用Python中的pandas库来合并excel数据。以下是一个简单的示例代码:
```python
import pandas as pd
# 读取第一个excel文件
df1 = pd.read_excel('file1.xlsx')
# 读取第二个excel文件
df2 = pd.read_excel('file2.xlsx')
# 合并两个数据框
merged_df = pd.concat([df1, df2], ignore_index=True)
# 将数据保存到新的excel文件中
merged_df.to_excel('merged_file.xlsx', index=False)
```
在这个示例代码中,我们首先使用pandas库的read_excel函数来读取两个excel文件。然后,我们使用concat函数来将两个数据框合并为一个数据框。最后,我们使用to_excel函数将合并后的数据保存到新的excel文件中。
阅读全文