python write a line to a file code example
Example 1: python writeline file
f = open("test.txt", "w")
f.writelines(["Hello", "World"])
f.close
Example 2: python output to text file
$ python my_program.py > output.txt
f = open("test.txt", "w")
f.writelines(["Hello", "World"])
f.close
$ python my_program.py > output.txt