Answers for "python reading a text file line by line"

46

python read file line by line

with open("file.txt") as file_in:
    lines = []
    for line in file_in:
        lines.append(line)
Posted by: Guest on March-03-2020
0

read a file line-byline in python

filepath = 'Iliad.txt'
with open(filepath) as fp:
   line = fp.readline()
   cnt = 1
   while line:
       print("Line {}: {}".format(cnt, line.strip()))
       line = fp.readline()
       cnt += 1
Posted by: Guest on November-03-2021

Code answers related to "python reading a text file line by line"

Python Answers by Framework

Browse Popular Code Answers by Language