Append multiple pandas data frames at once

I think you can use concat:

print pd.concat([t1, t2, t3, t4, t5])

Maybe you can ignore_index:

print pd.concat([t1, t2, t3, t4, t5], ignore_index=True)

More info in docs.

Leave a Comment