I have two dataframes, A and B.
I want to combine them by pandas.concat([A, B], axis = 1).
However, there are some duplicated columns in it as below:  
# A
ID Col1 Col2 Col3 Col4 Col5 TL
# B
Col1 Col2 Col3 Col4 Col5
The value under Col1-Col5 in data B are different with the one in data A.
How to get a new dataframe with column, ID Col1 Col2 Col3 Col4 Col5 TL.
ID and TL is from data A but Col1-Col5 are from data B.  


da[['c1','c2']] = db[['c1','c2']]?pd.concat([da['ID'],db[['c1','c2']], da['TL']], 1)?