python实现excelvlookup合并
时间: 2023-10-02 07:04:43 浏览: 69
python中excel合并
在Python中,可以使用pandas库来实现excel中的vlookup合并。下面是一个简单的示例代码:
```python
import pandas as pd
# 读取两个excel文件
df1 = pd.read_excel('file1.xlsx')
df2 = pd.read_excel('file2.xlsx')
# 使用vlookup合并
result = pd.merge(df1, df2, on='ID', how='left')
# 将结果保存为新的excel文件
result.to_excel('result.xlsx', index=False)
```
其中,`file1.xlsx`和`file2.xlsx`是要合并的两个文件,`ID`是两个文件共有的字段。`pd.merge()`函数用于合并两个DataFrame,`on`参数指定要合并的字段,`how`参数指定合并方式,这里使用的是左连接(left join)。最后,将结果保存为新的excel文件`result.xlsx`。
阅读全文