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, 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?

link|improve this question

11  
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
4  
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
3  
@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
feedback

3 Answers

up vote 35 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).

link|improve this answer
3  
Isn't readability the same as being pythonic? – Dheeraj Nov 26 '11 at 17:49
@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
Just don't forget to flush. – temoto Apr 3 at 19:00
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 at 11:22
sys.stderr.write() is nothing like print. It doesn't add a newline. – Matt Hickford May 18 at 14:27
feedback

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'))

link|improve this answer
2  
+1 for explanation of WHY print >> sys.stderr is better -- the ability to print dicts without "str"ing them and without the pesky TypeError (useful for short scripts and debugging!) – Kasapo Apr 5 at 19:11
feedback

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.")

link|improve this answer
14  
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
feedback

Your Answer

 
or
required, but never shown

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