I'm learning python and I would like to populate one dataframe by getting data from another. If I use excel I would use VLOOKUP, although I know I can use pandas with python, i don't now how. Basucally, I have two dataframes:
df1.csv
Time 07:03:52
EmployeeID 98766
EmployeeName "John"
Time 08:03:52
EmployeeID 98765
EmployeeName "Mary"
df2.csv
Time EmployeeID EmployeeName
I would like to create a third dataframe from df2.csv like this:
df3.csv
EmployeeName EmployeeID Time
John 98766 07:03:52
Mary 98765 08:03:52