writing to a python file with new lines 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")