vote up 3 vote down star

I am trying to determine the best way to handle getting rid of newlines when reading in newline delimited files in Python.

What I've come up with is the following code, include throwaway code to test.

import os

def getfile(filename,results):
   f = open(filename)
   filecontents = f.readlines()
   for line in filecontents:
     foo = line.strip('\n')
     results.append(foo)
   return results

blahblah = []

getfile('/tmp/foo',blahblah)

for x in blahblah:
    print x

Suggestions?

flag
what about using split("/n")? – jle Feb 13 at 6:40
Same as: stackoverflow.com/questions/339537/… – Vijay Dev Feb 13 at 8:38

6 Answers

vote up 10 vote down check

lines = open(filename).read().splitlines()

link|flag
This answer does what I was going for, I'm sure I'll need to add some error checking and such, but for this specific need, it's great. Thank you all for providing answers! – solarce Feb 13 at 6:48
vote up 4 vote down
for line in file('/tmp/foo'):
    print line.strip('\n')
link|flag
vote up 0 vote down

I'd do it like this:

f = open('test.txt')
l = [l for l in f.readlines() if l.strip()]
f.close()
print l
link|flag
vote up 3 vote down

Here's a generator that does what you requested. In this case, using rstrip is sufficient and slightly faster than strip.

lines = (line.rstrip('\n') for line in open(filename))

However, you'll most likely want to use this to get rid of trailing whitespaces too.

lines = (line.rstrip() for line in open(filename))
link|flag
vote up 1 vote down

I use this

def cleaned( aFile ):
    for line in aFile:
        yield line.strip()

Then I can do things like this.

lines = list( cleaned( open("file","r") ) )

Or, I can extend cleaned with extra functions to, for example, drop blank lines or skip comment lines or whatever.

link|flag
vote up 1 vote down

Just use generator expressions:

blahblah = (l.rstrip() for l in open(filename))
for x in blahblah:
    print x

Also I want to advise you against reading whole file in memory -- looping over generators is much more efficient on big datasets.

link|flag

Your Answer

Get an OpenID
or

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