Skip to content

Instantly share code, notes, and snippets.

@bryjbrown
Last active August 29, 2015 14:27
Show Gist options
  • Save bryjbrown/64c39e967d38d25283a7 to your computer and use it in GitHub Desktop.
Save bryjbrown/64c39e967d38d25283a7 to your computer and use it in GitHub Desktop.
# instead of:
f = open('file.txt', 'r')
text = f.read()
# try this:
text = open('file.txt', 'r').read()
# you can do it on one line with one variable!
# less to read for the human, less to remember for the computer!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment