如何在 Python 中播放 .MP3 文件?

How do I play .MP3 files in Python?

如何在 Python 中播放 MPs 文件?我试过了

import os
os.system("start C:/thepathyouwant/file")

每次我收到错误:"couldn't locate file" 我正在开发基于文本的角色扮演游戏,我只想为音乐添加一个 MP3 文件。 我刚开始 Python,对 Pyglet 了解不多。我尝试使用命令行进行安装:

python setup.py install

在"Run"window.

我也尝试安装 pyglet.msi,但收到错误消息:

pyglet requires Python 2.4 or later. The installation will be aborted

运行 Python 2.7.9 运行 Windows 8

谢谢!

您可以使用 os 模块中的 startfile 函数来播放您的 file.Consider 这个例子:

import os
os.startfile('C:/Users/Aakash/Desktop/songs/Anime.mp3')