实现两个df 左连接,之前用 df3=pd.merge(df1,df2,on='id',how='left') 得到的结果是innerjoin的结果,正确写法 df3=df1.merge(df2,on='id',how='left')