Answers for "python count the lines read from a file"

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
2

python read lines

f = open("filename")
lines = f.readlines()
Posted by: Guest on November-16-2020

Python Answers by Framework

Browse Popular Code Answers by Language