how to direct output into a txt file in python in windows

From the console you would write:

python script.py > out.txt

If you want to do it in Python then you would write:

with open('out.txt', 'w') as f:
    f.write(something)

Obviously this is just a trivial example. You’d clearly do more inside the with block.

Leave a Comment