Answers for "how to count number of lines in file 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
1

count lines in files

find . -name '*.php' | xargs wc -l
Posted by: Guest on September-08-2020

Code answers related to "how to count number of lines in file python"

Python Answers by Framework

Browse Popular Code Answers by Language