Panda menggabungkan tetapi menyimpan kolom tertentu

df = pd.merge(df,df2[['Key_Column','Target_Column']],on='Key_Column', how='left')
Rich Ray