python write string to file line by line code example
Example 1: python writeline file
f = open("test.txt", "w")
f.write("Hello \nWorld")
f.close
Example 2: python output to text file
$ python my_program.py > output.txt
f = open("test.txt", "w")
f.write("Hello \nWorld")
f.close
$ python my_program.py > output.txt