Skip to content

Instantly share code, notes, and snippets.

@bayadeoro
Created September 20, 2013 16:28
Show Gist options
  • Select an option

  • Save bayadeoro/6640194 to your computer and use it in GitHub Desktop.

Select an option

Save bayadeoro/6640194 to your computer and use it in GitHub Desktop.
Python: Ejemplo de lectura de un fichero
my_file = open("output.txt", "r")
print my_file.read()
my_file.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment