Skip to content

Instantly share code, notes, and snippets.

@nsonnadsnip
Forked from nsonnad/iterate_csv.py
Created November 29, 2013 10:26
Show Gist options
  • Save nsonnadsnip/7703950 to your computer and use it in GitHub Desktop.
Save nsonnadsnip/7703950 to your computer and use it in GitHub Desktop.
python: use itertools to iterate over rows in a csv.reader obj
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