Winsound python不适用于已附加到的数组

时间:2019-10-13 11:44:39

标签: python winsound

import random
import winsound
songsArray = []
with open("test.txt") as f:    
        for line in f:
                songsArray.append(line)
songAmount = len(songsArray)        
selectedSong = songsArray[2]
print (selectedSong)

winsound.PlaySound(songsArray[2], winsound.SND_ALIAS)

在这段代码中,我试图将文本文件的每一行添加到数组中,如果我在数组中打印位置但尝试与winsound一起使用时,似乎可以提供正确的输出除最后一个要追加的元素外,它不能与其他任何元素一起使用。

有人知道如何解决此问题吗?

当前,数组中有3个项目,当尝试播放除最后一个项目以外的任何其他项目时,它只会发出哔声。

1 个答案:

答案 0 :(得分:1)

当Python遍历文件中的各行时,每行中都包含换行符。有几种处理方法,这是一种:

import random
import winsound
with open("test.txt") as f:    
       songsArray = f.read().splitlines()
songAmount = len(songsArray)        
selectedSong = songsArray[2]
print (selectedSong)

winsound.PlaySound(songsArray[2], winsound.SND_ALIAS)