Python - Drop Row, если два столбца - NAN

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