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?

sys.stderr.write, i have actually seen a strange case wheresys.stderr.write('something')failed whereprint >> sys.stderr, 'something'worked fine. this was running python over anssh -Y -c blowfishsession. – wim Aug 2 '11 at 4:59