I have two data frames df1 and df2.I want to add Area column to df2 but the values of Area column should be from df1 and corresponding to Borough Column.
df1 = pd.DataFrame(data = {'Borough':['Barking and Dagenham','Barnet','Bexley'],'Area':[13,33,23]})
df2 = pd.DataFrame(data = {'Borough':['Barking and Dagenham','Barking and Dagenham',
'Barking and Dagenham','Barking and Dagenham',
'Barnet','Barnet','Barnet','Barnet',
'Bexley','Bexley','Bexley'],
'name':['Asia Spice', 'Bekash', 'Cosmo', 'Tandoori Hut', 'Day of the Raj',
'Spice Kings', 'Mill Hill Tandoori', 'India Garden', 'Yak & Yeti',
'Le Spice', 'Cafe Raj']})