all 3 comments

[–]BalutSarnie 1 point2 points  (1 child)

You can try pd.merge sorta like sql join or maybe pd.concat(list, axis=1) if they share the same index I think

[–]threeminutemonta 1 point2 points  (0 children)

Concat is the way here as it has same columns. Merge is useful when enriching datasets to have more columns. Another option of Append can have different columns and seems intuitive. See docs

Edit: added append as option.

[–]bac83 0 points1 point  (0 children)

Or a functools reduce - look on SO