Skip to content

Instantly share code, notes, and snippets.

@abunsen
Forked from SuAlvarez/gist:1721637
Created February 2, 2012 05:17
Show Gist options
  • Save abunsen/1721647 to your computer and use it in GitHub Desktop.
Save abunsen/1721647 to your computer and use it in GitHub Desktop.
import csv
ifile = open('test.csv', "rb")
reader = csv.reader(ifile)
rownum = 0
for row in reader:
print dir(row[rownum])
rownum += 1
ifile.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment