I have one df1 as follows
ID | Other Feature |
---|---|
1 | ... |
2 | ... |
Another df2 is as follows
ID | Name |
---|---|
1 | ... |
2 | ... |
The code must take input of ID from df1 and search for it in df2 and print the Name of that particular ID using python. Can anyone please help me how to take ID as input from df1 and print the Name of that particular ID from df2. I am new to python