Maybe I’m the only one who didn’t know that, but yesterday I learned how to make Python’s print
function not write \n
.
If you’re using Python’s print
function to write stuff to standard output, you’re probably used to its default behavior of ending lines with \n
:
> for i in xrange(5): print i 0 1 2 3 4
Sometimes you don’t want it to add the trailing newline. I used to think that in such cases, I need to switch to sys.stdout
:
> import sys > %paste for i in xrange(5): sys.stdout.write('%d ' % (i)) else: sys.stdout.write('\n') # for the trailing newline after the last iteration ## -- End pasted text -- 0 1 2 3 4
Turns out that the print
function supports the same behavior with a trailing comma!
> for i in xrange(5): print i, 0 1 2 3 4
Of course, this is covered in the documentation.
Every day I learn something new…