Created
November 18, 2018 22:07
-
-
Save scogle/58109738aeba0f6fbe1dc659f8d92e24 to your computer and use it in GitHub Desktop.
This file contains 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('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