[Tutor] Using if statement with csv file

Tammy Miller tgmiller5 at hotmail.com
Tue Jan 27 14:04:37 CET 2015


I have a csv file. I would like to create a filter or if statement on a column but it is not producing the right results. It displays everythingHere is the example:import csvwith open('test.csv') as csvfile:    reader = csv.DictReader(csvfile)for row in reader:    if row['Absent'] > 10      print rowI just want the column Absent to show me all of the numbers that are greater than 10.  It gives me all the results.  I am not sure what to do.Thank you, Tammy  		 	   		  


More information about the Tutor mailing list