Skip to content

Instantly share code, notes, and snippets.

@nsonnad
Created November 22, 2013 11:59
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save nsonnad/7598828 to your computer and use it in GitHub Desktop.
Save nsonnad/7598828 to your computer and use it in GitHub Desktop.
Iterate over specific range of rows with python csv.reader()
import csv
import itertools
f = csv.reader(open('file.csv'))
for row in itertools.islice(f, 0, 50):
print row
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment