有没有办法删除列表中的“\n”

我有一个保存在.txt文件中的各种目录的列表,我使用file.readlines()将该.txt文件中的所有行放入列表中。

有没有办法过滤掉每个条目末尾的“\n”?

此.txt文件夹中的一行将如下所示

D:/Music/Song.mp3\n

我基本上是从.txt文件中获取条目,并将它们放入Tkinter ListBox中,以便用户可以从该ListBox中选择他们的歌曲。


慕码人8056858
浏览 99回答 4
4回答

一只甜甜圈

做:for line in file:     directory = line.strip()而不是使用该方法。readline()与你得到的线没有.strip()\n

POPMUISE

最简单的方法是使用 代替 。.read().splitlines().readlines()

慕森王

您可以使用python的内置条带函数,该函数会删除前导空格。例如,在读取文件后:txtinput = D:/Music/Song.mp3\n txtinput = txtinput.strip() # This returns the required file path without the trailing new line同样,您可以查看如何从列表元素中删除 \n?以获取更多信息有关条带功能的更多信息:https://www.programiz.com/python-programming/methods/string/strip

慕标琳琳

使用方法.replace()string_list = [    "D:/Music/Song.mp3\n",    "hello world\n"]new_string_list = [string.replace("\n","") for string in string_list]
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python