Find index of all rows with null values in a particular column in pandas dataframe

Supposing you need the indices as a list, one option would be:

df[df['A'].isnull()].index.tolist()

Leave a Comment