“Cómo saber cuántas líneas tiene un archivo usando python” Código de respuesta

Python 3 Archivo de texto 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

Cómo saber cuántas líneas tiene un archivo 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

Respuestas similares a “Cómo saber cuántas líneas tiene un archivo usando python”

Preguntas similares a “Cómo saber cuántas líneas tiene un archivo usando python”

Más respuestas relacionadas con “Cómo saber cuántas líneas tiene un archivo usando python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código