Skip to content

Instantly share code, notes, and snippets.

@spoterianski
Last active August 29, 2015 14:05
Show Gist options
  • Save spoterianski/4c0779f83fe5e5ce153b to your computer and use it in GitHub Desktop.
Save spoterianski/4c0779f83fe5e5ce153b to your computer and use it in GitHub Desktop.
Read large file by lines
file = open(filename)
while 1:
lines = file.readlines(100000)
if not lines:
break
for line in lines:
print(line)
file.close()
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment