with open('testdata1.csv', 'r') as csv_file: csv_reader = csv.reader(csv_file) for row in csv_reader: if not row[0]: continue # this will skip to the next for loop iteration # do your processing here