📅  最后修改于: 2022-03-11 14:45:27.914000             🧑  作者: Mango
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