I have a specific column in a csv file and I want to write each row of that column as a newline in the same txt file. I'm using Panda if that helps. I can't quite figure out how to iterate over the rows of one specific column.
Will you please edit your question and include a small sample input, and how "each row of that column as a newline" looks "in the same txt file"? thanks! :)
cut -d';' -f<column-number>. ;-)