df = pd.merge(
df, # 左
wzplbm, # 右
left_on = [‘WZBM’,’ZBWZMC’], # 左DataFrame匹配列
right_on = [‘WZPLBM’,’WZMC’],# 右DataFrame匹配列
how=’inner’ # 内连接 (left:左连接,right:右连接,outer:外连接)
)
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/13005.html
df = pd.merge(
df, # 左
wzplbm, # 右
left_on = [‘WZBM’,’ZBWZMC’], # 左DataFrame匹配列
right_on = [‘WZPLBM’,’WZMC’],# 右DataFrame匹配列
how=’inner’ # 内连接 (left:左连接,right:右连接,outer:外连接)
)
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/13005.html