Skip to content

Instantly share code, notes, and snippets.

@aferriss
Created December 8, 2015 03:44
Show Gist options
  • Save aferriss/37c66038de31e29cf054 to your computer and use it in GitHub Desktop.
Save aferriss/37c66038de31e29cf054 to your computer and use it in GitHub Desktop.
read a big file in python
with open("myFile.txt") as f:
for line in f:
print line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment