pd. mereg code example
Example 1: joins in pandas
pd.merge(product,customer,left_on='Product_name',right_on='Purchased_Product')
Example 2: how to join tables in python
display('df1', 'df2', "pd.merge(df1, df2, on='employee')")
pd.merge(product,customer,left_on='Product_name',right_on='Purchased_Product')
display('df1', 'df2', "pd.merge(df1, df2, on='employee')")