vote up 0 vote down star

How to get rid of '\n' at the end of a line ?

flag

27% accept rate
What do you mean? Do you want to print text without a newline after the printed string? (Btw, I don't think "n" is a particularly helpful tag for this question...) – Rolf Rander Jan 30 at 13:01
Do you mean from an input line? When printing? – xtofl Jan 30 at 14:36
Given that your question is so vague, I believe a valid answer would be "don't put it there." Although I assume you've got helpful answers instead. – ΤΖΩΤΖΙΟΥ Jan 31 at 16:17

5 Answers

vote up 20 vote down
"string \n".strip();

or

"string \n".rstrip();
link|flag
vote up 18 vote down

If, as Rolf suggests in his comment, you want to print text without having a newline automatically appended, use

print "foo",

Note the trailing comma.

link|flag
Yeah, that may be the problem. – Ionut G. Stan Jan 30 at 13:12
vote up 6 vote down

Get rid of just the "\n" at the end of the line:

>>> "string \n".rstrip("\n")
'string '

Get rid of all whitespace at the end of the line:

>>> "string \n".rstrip()
'string'

Split text by lines, stripping trailing newlines:

>>> "line 1\nline 2 \nline 3\n".splitlines()
['line 1', 'line 2 ', 'line 3']
link|flag
vote up 4 vote down

In Python 3, to print a string without a newline, set the end to an empty string:

print("some string", end="")
link|flag
vote up 2 vote down

If you want a slightly more complex and explicit way of writing output:

import sys
sys.stdout.write("string")

Then you would responsible for your own newlines.

link|flag

Your Answer

Get an OpenID
or

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