I have a dataframe which contains the list of employees with their managers. The dataframe has the below columns
Employee ID Employee Name Manager Name
I want to insert a fourth column in the dataframe to pull out the Employee ID of the Manager. In Excel, I would have done that by using a Vlookup for the Manager Name in the Employee Name section and pulling out the Employee ID. Can someone please guide me on how this can be done in Python Dataframes?