Descrição
Método de arquivo Python readline()lê uma linha inteira do arquivo. Um caractere de nova linha final é mantido na string. Se o argumento tamanho estiver presente e não for negativo, é uma contagem máxima de bytes incluindo a nova linha final e uma linha incompleta pode ser retornada.
Uma string vazia é retornada apenas quando EOF é encontrado imediatamente.
Sintaxe
A seguir está a sintaxe para readline() método -
fileObject.readline( size );
Parâmetros
Valor de retorno
Este método retorna a linha lida do arquivo.
Exemplo
O exemplo a seguir mostra o uso do método readline ().
This is 1st line
This is 2nd line
This is 3rd line
This is 4th line
This is 5th line
#!/usr/bin/python
# Open a file
fo = open("foo.txt", "rw+")
print "Name of the file: ", fo.name
# Assuming file has following 5 lines
# This is 1st line
# This is 2nd line
# This is 3rd line
# This is 4th line
# This is 5th line
line = fo.readline()
print "Read Line: %s" % (line)
line = fo.readline(5)
print "Read Line: %s" % (line)
# Close opend file
fo.close()
Quando executamos o programa acima, ele produz o seguinte resultado -
Name of the file: foo.txt
Read Line: This is 1st line
Read Line: This