How can I transfer the links from file2.xlsx
to the matching names in file1.xlsx
using pandas?
file1.xlsx
0 Names Ratings Links
1 Joe 10
2 Jack 7
3 Jim 8
file2.xlsx
Names Links
0 Jim example.com/32145
1 Joe example.com/35235
2 Jack example.com/90234
New file1.xlsx
Names Ratings Links
0 Joe 10 example.com/35235
1 Jack 7 example.com/90234
2 Jim 8 example.com/32145