Obtenha índices onde o valor está na pandas

rows_with_nan = [index for index, row in df.iterrows() if row.isnull().any()]
Depressed Dove