python write line break to file code example
Example 1: new line python write to file
hs.write(name + "\n")
Example 2: python write line break
new_line = "This new line will be added.\n"
with open("sample.txt", "a") as a_file:
a_file.write("\n")
a_file.write(new_line)