I want to read rows in excel table but when I want, during reading process, I would like to stop reading forward and I want to read previous lines (backward reading)? How can I go previous rows again?
import csv
file = open('ff.csv2', 'rb')
reader = csv.reader(file)
for row in reader:
print row