python next line write 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: new line python write to file
hs.write(name + "\n")
file = open("sample.txt", "w")
file.write("Hello\n")
file.write("World\n")
file.close()
hs.write(name + "\n")