Python: Leer líneas de un fichero de texto
Ejemplo de cómo leer un fichero de texto línea a línea
Lenguaje: Python (compilador: Python 2.7)
Categoría: Básico
# !/usr/bin/python
# -*- coding:utf-8 -*-
# (La línea anterior es necesaria si el fuente o los comentarios
# tienen acentos, eñe o caracteres internacionales)
# Fuente procedente de ErrorDeSintaxis.es
# Ejemplo de cómo leer un fichero de texto
# línea a línea
# Lenguaje: Python
# Compilador: Python 2.7
# Nivel: Básico
# Disponible desde 18/07/2011
# Aportado por Nacho
# Autor original: Equipo de java2s.com
# Web original: http://www.java2s.com/Code/Python/File/Readingonelineatatime.htm
print " Leyendo de una en una línea..." text_file = open("fichero.txt", "r") print text_file.readline() print text_file.readline() print text_file.readline() text_file.close()