Skip to content

Instantly share code, notes, and snippets.

@rukku
Forked from nsonnad/iterate_csv.py
Created February 1, 2017 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rukku/b94ea05bce428d0a3df972be81ff3cd2 to your computer and use it in GitHub Desktop.
Save rukku/b94ea05bce428d0a3df972be81ff3cd2 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