I would like to force Python's print function to output to the screen.
|
feedback
|
print by default prints to sys.stdout References: | |||||
feedback
|
|
Running
Here is the relevant doc. | |||
|
feedback
|
|
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. | ||||
|
feedback
|
|
Using the
... Now all your | |||
|
feedback
|
|
Why not try using an unbuffered file?
OR
| |||||
feedback
|
|
Loved Dan's solution! For python3 do:
| |||
|
feedback
|
|
Also as suggested in this blog one can reopen
Each | ||||
|
feedback
|
|
Here is my version, which provides writelines() and fileno(), too:
| |||
|
feedback
|