Drop row in pandas dataframe if any value in the row equals zero August 4, 2023 by Tarik i think the easiest way is looking at rows where all values are not equal to 0: df[(df != 0).all(1)]