How to get rid of '\n' at the end of a line ?
|
|
|||||||
|
|
|
or
|
||
|
|
|
|
If, as Rolf suggests in his comment, you want to print text without having a newline automatically appended, use
Note the trailing comma. |
||
|
|
|
Get rid of just the "\n" at the end of the line:
Get rid of all whitespace at the end of the line:
Split text by lines, stripping trailing newlines:
|
||
|
|
|
|
In Python 3, to print a string without a newline, set the end to an empty string:
|
||
|
|
|
|
If you want a slightly more complex and explicit way of writing output:
Then you would responsible for your own newlines. |
||
|
|
