Answers for "how to print a new line at the end of reading a file in python"

2

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 "how to print a new line at the end of reading a file in python"

Python Answers by Framework

Browse Popular Code Answers by Language