full outer join 2 dataframes having same column names using python code example
Example: python: left join
new_df = df_1.merge(df_2, on='id', how='left', indicator=True)
new_df = df_1.merge(df_2, on='id', how='left', indicator=True)