Python - Drop Row si deux colonnes sont nan

df.dropna(subset=[1, 2], how='all')
Or
df.dropna(subset=[1, 2], thresh=1)
Xenophobic Xenomorph