Created
December 11, 2013 10:03
-
-
Save madewulf/7907886 to your computer and use it in GitHub Desktop.
Mini CSV example
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 | |
reader = csv.reader(open('file.csv', 'rU')) | |
for row in reader: | |
print row[0] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment