XRazor1987654321

I was wondering if you all could tell me how to get Python 3.8 to play an mp3 song (Stars & Stripes Forever) while Turtle draws an American flag please? I have the Turtle part already, I have winsound to make tones, but can’t get the song to play.

Hii, I am though a beginner so do not much about winsound function…but I can tell you how to play it…so there you go

from pygame import mixer

mixer.init()
mixer.music.load(‘C:/Users/RakeshS/Downloads/t.mp3’)
#C:/Users/RakeshS/Downloads/t.mp3 this shall be replaced by the directory of your audio file and remember to use forward slash
mixer.music.play()

Thank you very much!