Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have come across at least three ways to do this:

 print >> sys.stderr, 'spam'

 sys.stderr.write('spam\n')

 from __future__ import print_function
 print('spam', file=sys.stderr)

It seems to contradict zen of python #13 — there should be one - and preferably only one -obvious way to do it — so I'm a bit confused about what's the preferred way to do it? Are there any advantages or disadvantages to one way or the other?

share|improve this question
33  
Not answering the q, but in case anybody hasn't seen it, try typing "import this" in Python interactive console. – dkamins Apr 7 '11 at 1:01
note: now that i'm in the habit of using sys.stderr.write, i have actually seen a strange case where sys.stderr.write('something') failed where print >> sys.stderr, 'something' worked fine. this was running python over an ssh -Y -c blowfish session. – wim Aug 2 '11 at 4:59
9  
The first way listed is one of the many things removed in Python 3. The consensus seems to be that the >> syntax was ugly anyway, and since print is now a function, the syntax would never work. – Steve Howard Aug 5 '11 at 21:50
6  
@wim try sys.stderr.flush() after the call to write. – Mike Ramirez Aug 13 '11 at 2:16
1  
well, the failure was actual a crash, through some strange combination of threading, matplotlib pyplot backend, and ssh X11 forwarding, sys.stderr had somehow been assigned to something which python complained wasn't a file-like object – wim Aug 13 '11 at 6:58

8 Answers

up vote 96 down vote accepted

sys.stderr.write() is my choice, just more readable and saying exactly what you intend to do and portable across versions.

Edit: being 'pythonic' is a third thought to me over readability and performance... with these two things in mind, with python 80% of your code will be pythonic. list comprehension being the 'big thing' that isn't used as often (readability).

share|improve this answer
7  
Isn't readability the same as being pythonic? – Dheeraj V.S. Nov 26 '11 at 17:49
1  
@Dheeraj yes and no, pythonic to me is using the language elegantly while retaining readability. Some simple list/dict comprehensions compound statements would be more pythonic than the normal for loop, I try to opt for the more common, longer versions. I wouldn't call it pythonic. – Mike Ramirez Dec 20 '11 at 17:37
4  
Just don't forget to flush. – temoto Apr 3 '12 at 19:00
2  
Advantage of the print statement is easy printing of non-string values, without having to convert them first. If you need a print statement, I would therefore recommend using the 3rd option to be python 3 ready – vdboor Apr 6 '12 at 11:22
6  
sys.stderr.write() is nothing like print. It doesn't add a newline. – Colonel Panic May 18 '12 at 14:27
show 4 more comments

My choice is: print >> sys.stderr, 'spam' Because you can simply print lists/dicts etc. without convert it to string. print >> sys.stderr, {'spam': 'spam'} instead of: sys.stderr.write(str('spam': 'spam'))

share|improve this answer
2  
The more Pythonic way to print a dictionary would be with something like "{0}".format({'spam': 'spam'}) anyway, wouldn't it? I would say you should avoid explicitly converting to string. Edit: I accidentally a grammar – luketparkinson Jun 23 '12 at 11:54
@luketparkinson this all about debugging - so, I think, it's more preferable to use the simplest code as possible. – Frankovskyi Bogdan Mar 24 at 23:33
2  
This doesn't work on Python 3, so you should avoid it in new code. – JonnyJD Apr 23 at 10:04

I would say that your first approach:

print >> sys.stderr, 'spam' 

is the "One . . . obvious way to do it" The others don't satisfy rule #1 ("Beautiful is better than ugly.")

share|improve this answer
34  
Opinions differ. This is the least obvious to me. – porgarmingduod Apr 7 '11 at 6:39
where do you have to put parantheses here? – Ali Veli Oct 20 '11 at 12:58

This will mimic the standard print function but output on stderr

def print_err(*args):
    sys.stderr.write(' '.join(map(str,args)) + '\n')
share|improve this answer

If you do a simple test:

import time
import sys

def run1(runs):
    x = 0
    cur = time.time()
    while x < runs:
        x += 1
        print >> sys.stderr, 'X'
    elapsed = (time.time()-cur)
    return elapsed

def run2(runs):
    x = 0
    cur = time.time()
    while x < runs:
        x += 1
        sys.stderr.write('X\n')
        sys.stderr.flush()
    elapsed = (time.time()-cur)
    return elapsed

def compare(runs):
    sum1, sum2 = 0, 0
    x = 0
    while x < runs:
        x += 1
        sum1 += run1(runs)
        sum2 += run2(runs)
    return sum1, sum2

if __name__ == '__main__':
    s1, s2 = compare(1000)
    print "Using (print >> sys.stderr, 'X'): %s" %(s1)
    print "Using (sys.stderr.write('X'),sys.stderr.flush()):%s" %(s2)
    print "Ratio: %f" %(float(s1) / float(s2))

You will find that sys.stderr.write() is consistently 1.81 times faster!

share|improve this answer
If I run this I see a much smaller difference. It's interesting that most answers ignore the print function (python 3) way. I've never used it before (inertia), but thought I'd run this timing script and add the print function. Direct comparison of print statement and function isn't possible (import from future applies to the whole file and masks the print statement) but rewriting this code to use the print function instead of statement I see a bigger speed up (~1.6 though somewhat variable) in favour of the print function. – hamish Nov 8 '12 at 10:03

I found this to be the only one short + flexible + portable + readable:

from __future__ import print_function

...

def warning(*objs):
    print("WARNING: ", *objs, end='\n', file=sys.stderr)
share|improve this answer

print >> sys.stderr is gone in Python3. http://docs.python.org/3.0/whatsnew/3.0.html says:

Old: print >>sys.stderr, "fatal error"
New: print("fatal error", file=sys.stderr)
share|improve this answer

The same applies to stdout:

print 'spam'
sys.stdout.write('spam\n')

As stated in the other answers, print offers a pretty interface that is often more convenient (e.g. for printing debug information), while write is faster and can also be more convenient when you have to format the output exactly in certain way.

Whichever file your printing to, I would prefer maintainable code, so there are two considerations:

  1. You may later decide to switch to a regular file. If you use the same function, it's easier to switch between stdout/stderr and a regular file.

  2. print() syntax has changed in Python 3, so if you need to support both versions, write() might be better.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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