This is my csv file:
A  B  C  D
0  1  5  5
1  0  3  0
0  0  0  0
2  1  3  4 
I want it check The B column if I foud 0 I delete all the row so this what I need as output:
A  B  C  D
0  1  5  5
2  1  3  4
I tried this code :
import pandas as pd
df=pd.read_csv('Book1.csv', sep=',', error_bad_lines=False, dtype='unicode')
for index, row in df.iterrows():
    if row['B'] == 0:
        df.drop(row,index=False)
df.to_csv('hello.csv')
It return for me :
   A  B  C  D
0  0  1  5  5
1  1  0  3  0
2  0  0  0  0
3  2  1  3  4
It did not delete any thing I don't know where is the problem Any help please !
 
    