vote up 14 vote down star
3

I would like to force Python's print function to output to the screen.

flag

5 Answers

vote up 31 vote down check
import sys
sys.stdout.flush()

print by default prints to sys.stdout

References:

link|flag
vote up 11 vote down

Running python -h, I see a command line option:

-u : unbuffered binary stdout and stderr; also PYTHONUNBUFFERED=x see man page for details on internal buffering relating to '-u'

Here is the relevant doc.

link|flag
vote up 0 vote down

Using the -u command-line switch works, but it is a little bit clumsy in my opinion. I usually use a custom stdout, like this:

class flushfile(file):
  def __init__(self, f):
    self.f = f
  def write(self, x)
    self.f.write(x)
    self.f.flush()

import sys
sys.stdout = flushfile(sys.stdout)

... Now all your print calls (which use sys.stdout implicitly), will be automatically flushed.

link|flag
vote up 2 vote down

Dan's idea doesn't quite work:

#!/usr/bin/env python
class flushfile(file):
    def __init__(self, f):
        self.f = f
    def write(self, x):
        self.f.write(x)
        self.f.flush()

import sys
sys.stdout = flushfile(sys.stdout)

print "foo"

The result:

Traceback (most recent call last):
  File "./passpersist.py", line 12, in <module>
    print "foo"
ValueError: I/O operation on closed file

I believe the problem is that it inherits from the file class, which actually isn't necessary. According to the docs for sys.stdout:

stdout and stderr needn’t be built-in file objects: any object is acceptable as long as it has a write() method that takes a string argument.

so changing

class flushfile(file):

to

class flushfile(object):

makes it work just fine.

link|flag
vote up 1 vote down

Why not try using an unbuffered file?

f = open('xyz.log', 'a', 0)

OR

sys.stdout = open('out.log', 'a' 0)

link|flag
This solved my problem described here stackoverflow.com/questions/1654875/… . Thank you. Great tip. – chmike Nov 1 at 13:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.