Created
September 11, 2012 13:18
-
-
Save mnzk/3698389 to your computer and use it in GitHub Desktop.
lazy read
This file contains hidden or 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 sys | |
def read(filename): | |
with open(filename) as f: | |
for line in f: | |
yield line | |
if __name__ == '__main__': | |
for line in read(sys.argv[1]): | |
print line |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment