vote up 1 vote down star

Would this work on all platforms? i know windows does \r\n, and remember hearing mac does \r while linux did \n. I ran this code on windows so it seems fine, but do any of you know if its cross platform?

while 1:
    line = f.readline()
    if line == "":
        break
    line = line[:-1]
    print "\"" + line + "\""
flag

38% accept rate
OS X uses \n - it was only the abomination that was "Classic" that did \r. – Matthew Schinckel Feb 3 at 23:40
Any line ending (including unicode ones) are translated into \n automatically. – mgb Feb 3 at 23:48
-1: out-of-date MacOS info. – S.Lott Feb 4 at 1:03

3 Answers

vote up 13 vote down check

First of all, there is universal newline support, second: just use line.strip(). Use line.rstrip('\r\n'), if you want to preserve any whitespace at the beginning or end of the line.

Oh, and

print '"%s"' % line

or at least

print '"' + line + '"'

might look a bit nicer.

Finally, you can iterate over the lines in a file like this:

for line in f:
    print '"' + line.strip('\r\n') + '"'
link|flag
This will strip off all leading and trailing whitespace, not just the line ending. – Dave Ray Feb 3 at 23:36
+1: open( file, "rU" ) for universal newline. – S.Lott Feb 3 at 23:51
concise, complete, to the point. – chryss Feb 4 at 15:19
vote up 4 vote down

Try this instead:

line = line.rstrip('\r\n')
link|flag
vote up 0 vote down

line = line[:-1]

A line can have no trailing newline, if it's the last line of a file.

As suggested above, try universal newlines with rstrip().

link|flag

Your Answer

Get an OpenID
or

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