I have data in a file and I need to write it to CSV file in specific column. The data in file is like this:
002100 002077 002147
My code is th
Read the docs and use the csv module from the standard library.
But to be slightly more specific, you can do:
for column in row: do things