Skip to content

Instantly share code, notes, and snippets.

@moacirmoda
Created November 7, 2013 18:46
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 moacirmoda/7359777 to your computer and use it in GitHub Desktop.
Save moacirmoda/7359777 to your computer and use it in GitHub Desktop.
file = "file.txt"
# ler linha a linha
for line in handle(file):
print line
# lendo o arquivo todo
with open(file) as handle:
data = handle.read()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment