pands df remove rows with 0 perticular columns based on column no. code example
Example: remove rows or columns with NaN value
df.dropna() #drop all rows that have any NaN values
df.dropna(how='all')
df.dropna() #drop all rows that have any NaN values
df.dropna(how='all')