I would like to force Python's print function to output to the screen.
|
|
print by default prints to sys.stdout References: |
|||
|
|
|
|
Why not try using an unbuffered file? f = open('xyz.log', 'a', 0) OR sys.stdout = open('out.log', 'a' 0) |
||
|
|
|
Dan's idea doesn't quite work:
The result:
I believe the problem is that it inherits from the file class, which actually isn't necessary. According to the docs for sys.stdout:
so changing
to
makes it work just fine. |
|||
|
|
|
|
Using the
... Now all your |
||
|
|
|
|
Running
Here is the relevant doc. |
||
|
|
