I have two data frames. df1 has this structure ['Key', 'Name']. df2 has this structure ['Key', 'Price'].
Both have different numbers of rows. Now, I want to check if 'Key' from df1 exists in 'Key' column of df2. If yes, then copy the corresponding value of 'Price' from df2 and save it in data frame df3 as a new column called 'lookup'. If no then save -1. Note that df3 is a copy of df1.