I have VLC installed on my raspberry pi 3. I want to be able to run a python file that opens a mp3 sound file (my_sound.mp3) and plays the sound. The closest that I got is:
import os
import subprocess
os.system("/usr/bin/cvlc")
Rasp is running ubuntu.