I have two data frames df1 with two columns [firstname] and [City], 100 row df2 with two columns [City] and [Continent], 50 row
i want to merge between the two data frames on the [City] column in order to have this result Firstname/City/Continent and 100 row (same rows as the df1), the remain names without Comun City in both dataframes should be blank
it is like df2 being the dictionary for df1, each time we have a match on the [City] takes the values from [Continent] column in df2 and put in df1
thank you