python

Pandas - Append multiple pandas data frames at once

new_df = pd.concat([df1, df2, df3, df4, df5])
#ore
new_df = pd.concat([df1, df2, df3, df4, df5], ignore_index=True)

I am trying to find some way of appending multiple pandas data frames at once rather than appending them one by one using

Was this helpful?