I have a CSV file called input_sheet.csv and the content in the file is:
Coulmn1,Coulmn2,Coulmn3,Coulmn4,Coulmn5,Coulmn6,Coulmn7,Coulmn8
Data1,Data2,Data3,Data4,Data5,Data6,Data7,Data8
Value1,Value2,Value3,Value4,Value5,Value6,Value7,Value8
I am reading the rows one by one in while loop and in each row i want to change "Nth" column value based on my requirement. For example:1st row 6th column,2nd row 5th column.
Could you please help out with some solution?
Thanks in advance.