Lets say I have a CSV file which looks like:
A B C D
1 f g h j
2 s x c d
3 c f t y
4 f u i p
I would like to be able to concatenate the column rows so that I have lists which looks like:
fscf (column A)
gxfu (column B)
hcti (column C)
jdyp (column D)
I do not which to include the column headers. How can I do this?
Edit: I have the CSV file loaded into the program already.