Python - Drop Row Jika dua kolom adalah NAN

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