I'm trying to use python to match values of 3 columns from a dataframe to another dataframe and get values from another column in the matching datframe. How do i loop through my dataframe to select the columns to match with the other dataframe and extract the values from the column i want? The matching conditions are columns a,b and c should be the same values.
This is my dataframe [df1]:
This is the other datframe[df2]:
This is the result I want to achieve[df3]:
Thanks.