Best method for reading newline delimited files and discarding the newlines?

后端 未结 7 1098
孤城傲影
孤城傲影 2020-11-28 03:07

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 c

7条回答
  •  醉话见心
    2020-11-28 03:56

    I'd do it like this:

    f = open('test.txt')
    l = [l for l in f.readlines() if l.strip()]
    f.close()
    print l
    

提交回复
热议问题