0
我試圖製作一個需要打印.mp3
文件的程序。我用gTTS和os模塊來做。Python操作系統和gttts mp3文件錯誤
在代碼中,我通常使用os模塊,但是當我運行代碼時,即使聲音變大,我也聽不到聲音。
這裏是我的代碼:
def open_file(filename):
if sys.platform == "win32":
os.startfile(filename)
else:
opener ="open" if sys.platform == "darwin" else "xdg-open"
subprocess.call([opener, filename])
open_file(Warning.mp3)
messagebox.showinfo("현재 시간", printText)
注:현재시간爲韓語。對不起。
我想我得到的錯誤,因爲我寫了'win32'
,但我在maos X(macOS x:埃爾卡皮坦)。我知道什麼是錯,但我不知道如何解決它。有人可以幫我調試這個問題嗎?