Получите индексы, где значение на пандас

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