In python, I want to join / merge 2 csv files based on index values.Both the files have index column and based on the index we have to add a particular column from one csv to another csv.
Ex: csv 1:
Index topic subject
1115 fcfs Operating System
1923 dml Database Management System
835 jdbc Object_oriented_programing
1866 joints Database Management System
CSV 2:
Index Questions
180 When an object is seen from front..
1115 Case in which fcfs is the best algo
959 How does the scheduler know the time..
Output csv:
Index topic Subject Questions
1115 fcfs Operating System Case in which..
Pleas help me to write a code in Python