我正在尝试确定在Python中读取换行符分隔文件时处理删除换行符的最佳方法.
我想出的是以下代码,包括要测试的一次性代码.
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
建议?
解决方法:
lines = open(filename).read().splitlines()