get indexes of null pandas code example
Example: find index of null values pandas
rows_with_nan = [index for index, row in df.iterrows() if row.isnull().any()]
rows_with_nan = [index for index, row in df.iterrows() if row.isnull().any()]