Is it possible to write a csv cell by mentioning its row and column number. I'm aware of python 'csv' module in which 'csv.writer' has only writerow and writerows method to write data. These methods always writes the data in a new row, but i want to write it in a single row different columns in one run. Problem is i cant accumulate data in a list and write it at once, I have to do some action and get data, to write it to the next column
For example I have to open csv and start with a new row, write some data in the first column, perform some action get the data and write it to the second column, likewise i have to write many columns
As mentioned above I've tried it using csv.writer's writerow and writecolumn methods and couldn't accomplish this. Anyone had come across similar thing, kindly let me know how can i accomplish this.