我有一个。txt文件的值。

这些值如下所示:

Value1
Value2
Value3
Value4

我的目标是将值放在一个列表中。当我这样做时,列表看起来像这样:

['Value1\n', 'Value2\n', .〕

\n不需要。

这是我的代码:

t = open('filename.txt')
contents = t.readlines()

当前回答

打开文件后,列表理解可以在一行中完成:

fh=open('filename')
newlist = [line.rstrip() for line in fh.readlines()]
fh.close()

记得之后关闭你的文件。

其他回答

最简单的方法是写入file.readline()[0:-1] 这将读取除最后一个字符(换行符)以外的所有内容。

with open('D:\\file.txt', 'r') as f1:
    lines = f1.readlines()
lines = [s[:-1] for s in lines]
from string import rstrip

with open('bvc.txt') as f:
    alist = map(rstrip, f)

注意:rstrip()去掉了空白,也就是说:\f, \n, \r, \t, \v, \x和空白, 但我想你只对行中重要的字符感兴趣。然后,仅仅map(strip, f)将更好地适合,同时删除标题空白。


如果你真的只想消除NL \n和RF \r符号,请执行以下操作:

with open('bvc.txt') as f:
    alist = f.read().splitlines()

没有传入参数的splitlines()不保留NL和RF符号(Windows在行末记录NLRF文件,至少在我的机器上是这样),但保留其他空白,特别是空格和制表符。

.

with open('bvc.txt') as f:
    alist = f.read().splitlines(True)

效果与

with open('bvc.txt') as f:
    alist = f.readlines()

也就是说NL和RF被保留

打开文件后,列表理解可以在一行中完成:

fh=open('filename')
newlist = [line.rstrip() for line in fh.readlines()]
fh.close()

记得之后关闭你的文件。

我使用strip函数来消除换行符,因为分割行会在4 gb的文件上抛出内存错误。

示例代码:

with open('C:\\aapl.csv','r') as apple:
    for apps in apple.readlines():
        print(apps.strip())