how to drop row with empty column in pandas code example Example 1: drop null rows pandas df.dropna() Example 2: pandas remove rows with null in column df = df[df['EPS'].notna()]