I have 2 csv files first.csv and second.csv. They both have a shared column.
Example: first : a b c d second: x y a z
I have to create a third csv file that looks like this: third : a b c d x y z
The files do not have the same number of entries, I must only merge the lines that share the same column. Also the paths of the 3 csv files must be sent as parameters.
I was trying to do this in Java but Python would also work!
I don't really know what I should do :(