I have two tables with same number of rows (second table is computed from first one by processing of text inside T1). I have both of them stored as pandas dataframe. T2 is no co
I want to add that pd.concat can do what you want by just providing the axis as columns. like this:
pd.concat([T1,T2],axis=1)