gpt4 book ai didi

python - 在附加到列表之前剥离行编辑?

转载 作者:行者123 更新时间:2023-11-28 20:09:03 24 4
gpt4 key购买 nike

好的,我正在编写一个读取文本文件并遍历不同行的程序,但我遇到的问题是行结尾 (\n)。我的目标是逐行读取文本文件并将其写入列表并在将其附加到列表之前删除行结尾。

我试过这个:

thelist = []    
inputfile = open('text.txt','rU')

for line in inputfile:
line.rstrip()
thelist.append(line)

最佳答案

字符串在 Python 中是不可变的。所有字符串方法都返回 字符串,并且不修改原始字符串,所以行

line.rstrip()

实际上什么都不做。您可以使用列表理解来完成此操作:

with open("text.txt", "rU") as f:
lines = [line.rstrip("\n") for line in f]

另请注意,强烈建议使用 with 语句打开(并隐式关闭)文件。

关于python - 在附加到列表之前剥离行编辑?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11827839/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com