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?
|
In Python when I do
The output I get is
Where does the newline come from? And how do I type both statements in the same line using two print statements?
| ||||
|
feedback
|
|
The | |||||||||||
feedback
|
|
From the documentation:
| |||
|
feedback
|
|
If you need full control of the bytes written to the output, you might want to use
When not outputing a newline (
| |||
|
feedback
|