最佳答案
我正在尝试确定在 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