Ejemplo 1: Python lee un archivo de texto en una lista
text_file = open("filename.dat", "r")
lines = text_file.readlines()
print lines
print len(lines)
text_file.close()
Ejemplo 2: Python lee el archivo de texto a la lista
with open(filename) as f:
content = f.readlines()
# you may also want to remove whitespace characters like `n` at the end of each line
content = [x.strip() for x in content]
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)