drop all rows with 0 values for a column pandas code example
Example 1: remove 0th row pandas
df1 = df.iloc[1:]
Example 2: pandas remove rows with null in column
df = df[df['EPS'].notna()]
df1 = df.iloc[1:]
df = df[df['EPS'].notna()]