Skip to content

Instantly share code, notes, and snippets.

@aaayushsingh
Created October 19, 2017 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaayushsingh/1dff3d6684a1ade654f71dce4626ac29 to your computer and use it in GitHub Desktop.
Save aaayushsingh/1dff3d6684a1ade654f71dce4626ac29 to your computer and use it in GitHub Desktop.
import csv
filen = 'full-corpus.csv'
with open(filen) as csv_file:
reader = csv.reader(csv_file, delimiter=',', quotechar='"')
for item in reader:
print(item[0])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment