I am new to python and I have got to a point where I have created multiple csv file from large text files. So my csv's look like below.
CSV1
ABC, 1
DEF, 2
GHI, 3
CSV2
ABC, 4
DEF, 5
GHI, 6
and so on for upto 15 csv files.
I would like to create a combined csv file which looks something like below.
ABC, 1, 4
DEF, 2, 5
GHI, 3, 6
Any pointers on how to do this is appreciated.
python csv?