Created
November 22, 2013 11:59
-
-
Save nsonnad/7598828 to your computer and use it in GitHub Desktop.
Iterate over specific range of rows with python csv.reader()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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