I have a csv which has the 500 columns .I want to append the values of one column after the other.
The csv is as follows
A B
0 3
1 4
2
The output must be in the following format
A
0
1
2
3
4
That means the large number of column values are to be appended in just one column .