Skip to content

Instantly share code, notes, and snippets.

@Digiogior
Created January 13, 2017 10:01
Show Gist options
  • Select an option

  • Save Digiogior/baa2acb9706157bf14c7aee3f370a15c to your computer and use it in GitHub Desktop.

Select an option

Save Digiogior/baa2acb9706157bf14c7aee3f370a15c to your computer and use it in GitHub Desktop.
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