Skip to content

Instantly share code, notes, and snippets.

@scogle
Created November 18, 2018 22:07
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save scogle/58109738aeba0f6fbe1dc659f8d92e24 to your computer and use it in GitHub Desktop.
import csv
with open('myfile.csv', 'r') as csv_file:
csv_reader = csv.readlines(csv_file)
"""
can now iterate through the file, like:
for line in csv_reader:
# do something
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment