vote up 13 vote down star
5

This is one of my most common questions when I am coding Python (I was fed Perl as a baby and am forever trying to get rid of that affliction) and I wanted to put it out there on stack overflow so that next time I search for 'chomp python' on google, I get a useful answer.

flag
A better way to do this is to ask the question as if you don't know, then add an answer which is the actual answer. People will mark this down because it isn't a question. – Rich Bradshaw Nov 8 '08 at 18:30
1  
See also stackoverflow.com/questions/2572/… – Greg Hewgill Nov 8 '08 at 18:31
OK, I've redone it so that people don't mark you down too much :) Welcome to Stack Overflow, apart from a few strange rules like this one, it's a pretty friendly and sensible place! – Rich Bradshaw Nov 8 '08 at 18:33

5 Answers

vote up 0 vote down

I don't program in Python, but I came across an FAQ at python.org advocating S.rstrip("\r\n") for python 2.2 or later.

Alternatively, switch to Ruby. It has chomp.

link|flag
2  
It would be a pretty lame reason to switch language. – Tom Leys Jul 3 at 1:54
vote up 3 vote down

Note that rstrip doesn't act exactly like Perl's chomp() because it doesn't modify the string. That is, in Perl:

$x="a\n";

chomp $x

results in $x being "a".

but in Python:

x="a\n"

x.rstrip()

will mean that the value of x is still "a\n". You need to write x=x.rstrip() to get the equivalent behavior.

link|flag
vote up 7 vote down

And I would say the "pythonic" way to get lines without trailing newline characters is splitlines().

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

The canonical way to strip end-of-line (EOL) characters is to use the string rstrip() method removing any trailing \r or \n. Here are examples for Mac, Windows, and Unix EOL characters.

>>> 'Mac EOL\r'.rstrip('\r\n')
'Mac EOL'
>>> 'Windows EOL\r\n'.rstrip('\r\n')
'Windows EOL'
>>> 'Unix EOL\n'.rstrip('\r\n')
'Unix EOL'

Using '\r\n' as the parameter to rstrip means that it will strip out any trailing combination of '\r' or '\n'. That's why it works in all three cases above.

This nuance matters in rare cases. For example, I once had to process a text file which contained an HL7 message. The HL7 standard requires a trailing '\r' as its EOL character. The Windows machine on which I was using this message had appended its own '\r\n' EOL character. Therefore, the end of each line looked like '\r\r\n'. Using rstrip('\r\n') would have taken off the entire '\r\r\n' which is not what I wanted. In that case, I simply sliced off the last two characters instead.

link|flag
Note that modern Mac OS X apps use \n. Only old Carbon apps originally written for Mac OS use \r. – Peter Hosey Nov 9 '08 at 6:15
Thanks for the clarification. Of course, the rstrip('\r\n') still works in that case too. – Mike Nov 9 '08 at 11:35
vote up 23 vote down

Try the rstrip method.

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

Note that Python's rstrip method strips all kinds of whitespace by default, not just newlines as Perl does with chomp. To strip only newlines:

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

There is also the lstrip and strip methods.

>>> s = " \n  abc   def   "
>>> s.strip()
'abc   def'
>>> s.rstrip()
' \n  abc   def'
>>> s.lstrip()
'abc   def   '
>>>
link|flag
Not that this is community wiki, so that I don't gain any reputation from it. – Rich Bradshaw Nov 8 '08 at 18:32
Added a few more examples – MizardX Nov 8 '08 at 18:41
I'm not a Python person so I don't have the answer to this, but Perl's chomp() actually removes the input record separator from the end. That's a newline on Unixy things, but may be different (e.g. Windows) and it's mutable. Is there a way to remove that value only once from the end of a string? – brian d foy Nov 8 '08 at 21:04
brian d foy: Python doesn't have an input record separator like awk and Perl have. – Peter Hosey Nov 9 '08 at 6:13
Is \n sufficient? >>> "test string\r\n".rstrip("\n") 'test string\r' – Andrew Grimm Jul 3 at 1:43

Your Answer

Get an OpenID
or

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