python 用熊猫实现Excel中的VLOOKUP函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 用熊猫实现Excel中的VLOOKUP函数相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python3
# _*_ coding: utf-8 _*_


import pandas as pd

df1 = pd.read_excel("/Users/daren/Downloads/1.xlsx", sheet_name=0)
df2 = pd.read_excel("/Users/daren/Downloads/1.xlsx", sheet_name=1)

c = df1.merge(df2, on="Name", how="right")
# c=pd.merge(a,b,how='right')
# print(c.head())
c.to_excel('3.xlsx', sheet_name='result')

以上是关于python 用熊猫实现Excel中的VLOOKUP函数的主要内容,如果未能解决你的问题,请参考以下文章

用熊猫将Excel工作表(Listobject)读入python

用熊猫为excel中的单元格着色

无法将熊猫数据框附加到现有的 Excel 工作表

使用python导入带有熊猫的excel [重复]

传奇熊猫python中的“无”

如何在excel表中想让表1中的品名匹配出表二中品名对应的编码。