Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/04/2014, 04:11
sukoy
 
Fecha de Ingreso: febrero-2011
Mensajes: 54
Antigüedad: 13 años, 9 meses
Puntos: 18
Respuesta: [Aporte - Python] Código para leer todas las líneas de un archivo y mostra

Aconsejan usar 'with' para leer archivos, se encarga de cerrar el archivo automaticamente pase lo que pase.

Código Python:
Ver original
  1. with open("Palabras.txt", "r") as archivo_palabras:
  2.     contenido = archivo_palabras.read()

[URL="http://effbot.org/zone/python-with-statement.htm"]http://effbot.org/zone/python-with-statement.htm[/URL]

Saludos.