Python Pandas – Combining Multiple Columns into one Staggered Column

First stack the columns and then drop the multiindex:

df.stack().reset_index(drop=True)
Out: 
0    A
1    E
2    B
3    F
4    C
5    G
6    D
7    H
dtype: object

Leave a Comment