Python Drop Rows avec deux conditions

df_new = [df[(df['col_1'] == 1.0) & (df['col_2'] == 0.0)].index]
df.drop(df_new,axis = 0 ,inplace= True)
Energetic Eland