python print and write to a file code example
Example 1: python write to file
with open(filename,"w") as f:
f.write('Hello World')
Example 2: python save output to file
with open("output.txt", "a") as f:
print("Hello StackOverflow!", file=f)
print("I have a question.", file=f)