Skip to content

Instantly share code, notes, and snippets.

@madewulf
Created December 11, 2013 10:03
Show Gist options
  • Save madewulf/7907886 to your computer and use it in GitHub Desktop.
Save madewulf/7907886 to your computer and use it in GitHub Desktop.
Mini CSV example
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