-
-
Save rukku/b94ea05bce428d0a3df972be81ff3cd2 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