pandas drop coumn that value is not null code example Example 1: drop if nan in column pandas df = df[df['EPS'].notna()] Example 2: drop null rows pandas df.dropna()