Created
September 20, 2013 16:28
-
-
Save bayadeoro/6640194 to your computer and use it in GitHub Desktop.
Python: Ejemplo de lectura de un fichero
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
| 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