Created
January 13, 2017 10:01
-
-
Save Digiogior/baa2acb9706157bf14c7aee3f370a15c to your computer and use it in GitHub Desktop.
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 | |
| csvfile = open('filename', 'r') | |
| reader = csv.DictReader(csvfile) | |
| for row in reader: | |
| print(row) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment