So I'm trying to intertwine about 3 dataframes and the result should look like this:
df1
A
D
G
df2
B
E
H
df3
C
F
I
Resulting df:
A
B
C
D
E
F
G
H
I
I tried:
for i in len(df1+df2+df3):
final_df.append(i)
I want to do this as efficiently as possible and with n dataframes