Skip to content

Instantly share code, notes, and snippets.

@aniruddha27
Created May 16, 2020 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aniruddha27/9a985e013a02c8c0a2b48295ff632bc1 to your computer and use it in GitHub Desktop.
Save aniruddha27/9a985e013a02c8c0a2b48295ff632bc1 to your computer and use it in GitHub Desktop.
file = "Greetings.txt"
# generator expression
lines = (line for line in open(file))
print(lines)
# print lines
print(next(lines))
print(next(lines))
print(next(lines))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment