“Como saber quanta linha um arquivo tem usando python” Respostas de código

Arquivo de texto Python 3 Leng

f = open("filename", "r") #Load file in any mode that's able to read, ie r, r+, w+ etc

#to get length
len(f.readlines())

#To iterate over each line
for line in f.readlines(): #file.readlines(), splits the file into a list, where each element is a seperate line
  print(line)
Frightened Ferret

Como saber quanta linha um arquivo tem usando python

filename = "test.txt"
count = 0
with open(filename, 'r') as f:
    for line in f:
        count += 1
print("Total number of lines is:", count)
Random boi

Respostas semelhantes a “Como saber quanta linha um arquivo tem usando python”

Perguntas semelhantes a “Como saber quanta linha um arquivo tem usando python”

Mais respostas relacionadas para “Como saber quanta linha um arquivo tem usando python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código