Answers for "print the next line after a specifice line 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
6

python print without new lines

print('Foo', end='')
Posted by: Guest on July-14-2020

Python Answers by Framework

Browse Popular Code Answers by Language