I have a large dataframe with multiple columns (>1000) in Python and i wish to combine them into a single column so that i can transfer it into excel in the format that i want it to be.
Eg.
1 100 500 900
2 200 600 1000
3 300 700 1100
4 400 800 1200
into
1 100
2 200
3 300
4 400
5 500
6 600
7 700
8 800
9 900
10 1000
11 1100
12 1200
Any suggestions/solutions are appreciated.