I have a file named 0.csv, with 15 columns and 100 lines.
I have a different file names 8.csv that has only one column and the same amount of lines 100.
I need to replace a certain column in first file, 0.csv with the column that I get from second file: 8.csv (Columns have same amount of rows).
And then do the same thing with few other columns.
(As I need to solve this in IronPython, I cannot use Pandas).
I'm able to read/write to .csv using Python, I just could not find an example on how to write to a specific column.
Help greatly appreciated!
Thank you!