Possible Duplicate:
Python output buffering
I would like to force Python's print function to output to the screen.
I would like to force Python's print function to output to the screen. |
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
print by default prints to sys.stdout References: |
||||
|
|
|
Running
Here is the relevant doc. |
|||
|
|
|
Using the
... Now all your |
|||
|
|
|
Why not try using an unbuffered file?
OR
|
|||||
|
|
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. |
|||||
|
|
Also as suggested in this blog one can reopen
Each |
||||
|
|
Loved Dan's solution! For python3 do:
|
|||||
|
|
Here is my version, which provides writelines() and fileno(), too:
|
|||
|
|