I would like to make a new data frame from different excel files.
I have a unique code in one data sheet that shows location and another data sheet containing a person's name with a unique code. What I would like to do is show the location of a person by comparing their unique code.
Similar to the concept below:
Data Frame 1.xlsx
code = 1234, Location = serpong
code = 9876, Location = cisauk
Data Frame 2.xlsx :
code = 1234, Name = Dino
code = 9876, Name = ventura
expected data frame.xlsx (result by python) :
Name = dino, Location = serpong
Name = ventura, Location = cisauk
Is it possible to do this with pandas
? Or do I need another library to do this?