I have a pandas dataframe that has a specific list of email addresses like:
Email
[email protected]
[email protected]
My master list of email contact info is split up across 5 pandas dataframes (imported from excel). I need to vlookup across these 5 dataframes to pull the first_name & last_names of the contacts in my initial dataframe. Is there a quick way of doing this?
EDIT: The other dataframes would have email addresses as the primary identifier, with separate columns for first_name & last_name like:
Email|first_name|last_name
[email protected]|James|Bond
[email protected]|Jason|Bourne
Thanks for your help!