Concat dan Tambahkan DFS Python

import pandas as pd
df = pd.concat([df1, df2], axis=1, sort=False)
df = df1.append(df2)
JJSSEECC