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.
|
|
Try the rstrip method.
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:
There is also the
|
|||||||||||||||||||||
|
|
And I would say the "pythonic" way to get lines without trailing newline characters is splitlines().
|
|||
|
|
|
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.
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. |
|||||||||||||||
|
|
Note that rstrip doesn't act exactly like Perl's chomp() because it doesn't modify the string. That is, in Perl:
results in but in Python:
will mean that the value of |
||||
|
|
I might use something like this:
I think the problem with |
|||||||||
|
|
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. |
|||||||||
|
|
Careful with
Use |
|||
|
|
|
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:
A much closer approximation of typical Perl chomp usage can be accomplished with re.sub, like this:
|
|||
|
or you could always get geekier with regexps :) have fun! |
|||
|
|
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:
to slice out your newline character. |
|||
|
|
I don't use above methods. :/ test.cs
Simple python script
This is test.cs trival file. Simple python script code, which is important. Thank you! |
||||
|
|
