import csv with open(myfilepath, 'rb') as f: mycsv = csv.reader(f) for row in mycsv: text = row[1] ............