Temukan indeks panda nilai nol
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()]
df[df['A'].isnull()].index.tolist()