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.

link|improve this question
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
2  
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
@Sorin Sbarnea rstrip('\n') works with Python3. – weakish Aug 6 '10 at 5:12
feedback

10 Answers

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|improve this answer
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 – Markus Jarderot Nov 8 '08 at 18:41
1  
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
1  
brian d foy: Python doesn't have an input record separator like awk and Perl have. – Peter Hosey Nov 9 '08 at 6:13
2  
Is \n sufficient? >>> "test string\r\n".rstrip("\n") 'test string\r' – Andrew Grimm Jul 3 '09 at 1:43
show 1 more comment
feedback

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|improve this answer
feedback

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|improve this answer
1  
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
This feels more "right". Thanks! – Jagtesh Chadha Jan 23 '11 at 13:20
There's also os.linesep, which contains the EOL sequence for the current OS. – Eli Collins Aug 15 '11 at 13:44
feedback

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|improve this answer
Also, strip() removes repeated characters, whereas chop/chomp only removes one newline – kostmo Mar 29 '10 at 20:17
feedback

I might use something like this:

import os
s = s.rstrip(os.linesep)

I think the problem with rstrip("\n") is that you'll probably want to make sure the line separator is portable. (some antiquated systems are rumored to use "\r\n") Hopefully os.linesep will contain the right characters. the above works for me.

link|improve this answer
2  
"some antiquated systems" LOL! (we won't mention it out loud) :) – orange80 Jul 21 '10 at 4:31
This won't work however if you are trying to clean up user submitted content in a web application. The user content could come from any source and contain any newline chars. – free-dom Jan 18 at 18:50
feedback

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|improve this answer
14  
It would be a pretty lame reason to switch language. – Tom Leys Jul 3 '09 at 1:54
The downvote may have been justified if I hadn't included the first sentence, but ... wow. Someone's touchy! – Andrew Grimm Apr 2 '10 at 23:27
+1 for showing the FAQ, even though you advocate another language: it's helpful for someone who does use this language. – Zachary Young Jun 11 '10 at 23:31
feedback

Careful with "foo".rstrip(os.linesep): That will only chomp the newline characters for the platform where your Python is being executed. Imagine you're chimping the lines of a Windows file under Linux, for instance:

$ python
Python 2.7.1 (r271:86832, Mar 18 2011, 09:09:48) 
[GCC 4.5.0 20100604 [gcc-4_5-branch revision 160292]] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import os, sys
>>> sys.platform
'linux2'
>>> "foo\r\n".rstrip(os.linesep)
'foo\r'
>>>

Use "foo".rstrip("\r\n") instead, as Mike says above.

link|improve this answer
feedback

workaround solution for special case:

if the newline character is the last character (as is the case with most file inputs), then for any element in the collection you can index as follows:

foobar= foobar[:-1]

to slice out your newline character.

link|improve this answer
feedback

rstrip doesn't do the same thing as chomp, on so many levels. Read http://perldoc.perl.org/functions/chomp.html and see that chomp is very complex indeed.

However, my main point is that chomp removes at most 1 line ending, whereas rstrip will remove as many as it can.

Here you can see rstrip removing all the newlines:

>>> 'foo\n\n'.rstrip(os.linesep)
'foo'

A much closer approximation of typical Perl chomp usage can be accomplished with re.sub, like this:

>>> re.sub(os.linesep + r'\Z','','foo\n\n')
'foo\n'
link|improve this answer
feedback
"line 1\nline 2\r\n...".replace('\n', '').replace('\r', '')
>>> 'line 1line 2...'

or you could always get geekier with regexps :)

have fun!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown