I think your problem is that you read the header (first line) which contain words, and you try to parse it as int.
Try to add
next(csv_reader, None)
Before your loop to skip first row.
As to "How do I tackle that error", for next time simply use print:
print row[1]
Right before the line that produced the error. See what you actually try to convert to int..
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…