python match two df on a variable with different name

Solutions on MaxInterview for python match two df on a variable with different name by the best coders in the world

showing results for - "python match two df on a variable with different name"
Diego Alejandro
28 Jan 2020
1pd.merge(df1, df2, left_on=  ['userid', 'column1'],
2                   right_on= ['username', 'column1'], 
3                   how = 'left')