I need to find the third row from column 4 to the end of the a CSV file. How would I do that? I know I can find the values from the 4th column on with row[3] but how do
You could keep a counter for counting the number of rows:
counter = 1 for row in reader: if counter == 3: print('Interested in third row') counter += 1