我有一个保存在.txt文件中的各种目录的列表,我使用file.readlines()将该.txt文件中的所有行放入列表中。有没有办法过滤掉每个条目末尾的“\n”?此.txt文件夹中的一行将如下所示D:/Music/Song.mp3\n我基本上是从.txt文件中获取条目,并将它们放入Tkinter ListBox中,以便用户可以从该ListBox中选择他们的歌曲。
4 回答
一只甜甜圈
TA贡献1836条经验 获得超5个赞
做:
for line in file: directory = line.strip()
而不是使用该方法。readline()
与你得到的线没有.strip()
\n
慕森王
TA贡献1777条经验 获得超3个赞
您可以使用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
慕标琳琳
TA贡献1830条经验 获得超9个赞
使用方法.replace()
string_list = [
"D:/Music/Song.mp3\n",
"hello world\n"
]
new_string_list = [string.replace("\n","") for string in string_list]
添加回答
举报
0/150
提交
取消