Can Python open a mp3 file using a separate media player?
Opening a file with its associated application (Windows only):
import os
os.startfile('my_mp3.mp3')
A link to the documentation can be found here.
Opening a file with its associated application (Windows only):
import os
os.startfile('my_mp3.mp3')
A link to the documentation can be found here.