Answers for "python program to read line by line and store it into new file"

41

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
1

python read text file next line

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 April-03-2021

Code answers related to "python program to read line by line and store it into new file"

Python Answers by Framework

Browse Popular Code Answers by Language