Answers for "Read the text file line by line to return the total number of lines python"

16

python how to count the lines in a file

# Basic syntax:
count = len(open('/path/to/the/file.ext').readlines())
Posted by: Guest on October-04-2020

Code answers related to "Read the text file line by line to return the total number of lines python"

Python Answers by Framework

Browse Popular Code Answers by Language