Created
February 16, 2015 11:29
-
-
Save martincox/0d67dfb1ab3c7403506e to your computer and use it in GitHub Desktop.
Iterate DictReader
This file contains hidden or 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 | |
with open('file.csv') as input: | |
lines = csv.DictReader(input, delimiter='\t') | |
for line in lines: | |
print line['FC'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment