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

时间:2020-02-29 12:58:45

标签: python directory

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

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

.txt文件夹中的一行看起来像这样

D:/Music/Song.mp3\n

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

4 个答案:

答案 0 :(得分:0)

最简单的方法是使用.read().splitlines()而不是.readlines()

答案 1 :(得分:0)

您可以使用python的内置strip函数,该函数删除开头的空格。例如,读完文件后:

txtinput = D:/Music/Song.mp3\n
txtinput = txtinput.strip() # This returns the required file path without the trailing new line

类似地,您可以看到How to remove \n from a list element?以获得更多信息

有关剥离功能的更多信息: https://www.programiz.com/python-programming/methods/string/strip

答案 2 :(得分:0)

使用.replace()方法

string_list = [
    "D:/Music/Song.mp3\n",
    "hello world\n"
]

new_string_list = [string.replace("\n","") for string in string_list]

答案 3 :(得分:0)

做:

for line in file:
    directory = line.strip()

而不是使用readline()方法。

使用.strip(),您得到的行没有\n