how to make a new line when writing in a file in python code example
Example: python write text file on the next line
file = open("sample.txt", "w")
file.write("Hello\n")
file.write("World\n")
file.close()
file = open("sample.txt", "w")
file.write("Hello\n")
file.write("World\n")
file.close()