0
Open mp3 file
I want to know how to open mp3 file in python. Help me
2 odpowiedzi
+ 1
You won't be able to play an mp3 file inside of SoloLearn. To do it on your PC, you will need a module that supports audio files. Here is one example:
import playsound
playsound.playsound('PATH_TO_MP3/sound.mp3', True)
+ 1
Kawaru using native player or with libraries?