Python dataframe Mise à jour si ce n'est pas nouveau

pd.concat([df1[~df1.index.isin(df2.index)], df2])
Awful Armadillo