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.
