Obtener índices donde el valor es na pandas
rows_with_nan = [index for index, row in df.iterrows() if row.isnull().any()]
Depressed Dove
rows_with_nan = [index for index, row in df.iterrows() if row.isnull().any()]