show/hide this revision's text 2 added 24 characters in body

This

Overloading print is a design feature of python 3.0 to address your lack of ability to do this so in python 2.x.

However, you can override sys.stdout. (example.) Just assign it to another file-like object that does what you want.

Alternatively, you could just pipe your script through the the unix tee command. python yourscript.py | tee output.txt will print to both stdout and to output.txt, but this will capture all output.

show/hide this revision's text 1

This is a design feature of python 3.0 to address your lack of ability to do this in python 2.x.

However, you can override sys.stdout. (example.) Just assign it to another file-like object that does what you want.

Alternatively, you could just pipe your script through the the unix tee command. python yourscript.py | tee output.txt will print to both stdout and to output.txt, but this will capture all output.