python write to text file with new line

48

python write text file on the next line -

file = open("sample.txt", "w")
file.write("Hello\n")
file.write("World\n")
file.close()

Comments

Submit
0 Comments