In Python when I do

print "Line 1 is"
print "big"

The output I get is

Line 1 is
big

Where does the newline come from? And how do I type both statements in the same line using two print statements?

link|improve this question

feedback

4 Answers

up vote 16 down vote accepted

print adds a newline by default. To avoid this, use a trailing ,:

print "Line 1 is",
print "big"

The , will still yield a space. To avoid the space as well, either concatenate your strings and use a single print statement, or use sys.stdout.write() instead.

link|improve this answer
5  
+1 for how to remove the newline. In Python 3 it's print("Line 1 is", end=""). – marcog Jan 12 '11 at 13:28
detailed answer. +1 – abel Jan 12 '11 at 13:30
1  
You forgot this: docs.python.org/reference/simple_stmts.html#print – S.Lott Jan 12 '11 at 14:37
feedback

From the documentation:

A '\n' character is written at the end, unless the print statement ends with a comma. This is the only action if the statement contains just the keyword print.

link|improve this answer
feedback

If you need full control of the bytes written to the output, you might want to use sys.stdout

import sys
sys.stdout.write("Line 1 is ")
sys.stdout.write("big!\n")

When not outputing a newline (\n) you will need to explicitly call flush, for your data to not be buffered, like so:

sys.stdout.flush()
link|improve this answer
feedback

this is standard functionality, use print "foo",

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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