playsound file type python code example
Example 1: play music from python
from playsound import playsound
playsound('audio.mp3')
Example 2: playsound conda
>>> from playsound import playsound
>>> playsound('/path/to/a/sound/file/you/want/to/play.mp3')