Uzyskaj indeksy, w których wartością są na pandy

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