python go to next line in file code example
Example 1: python write text file on the next line
file = open("sample.txt", "w")
file.write("Hello\n")
file.write("World\n")
file.close()
Example 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