I am just writing a small python game for fun and I have a function that does the beginning narrative.
I am trying to get the audio to play in the background but unf
from pygame import mixer mixer.music.init() mixer.music.load("audio.mp3") # Paste The audio file location mixer.play()