Well you could just use pygame.mixer.music.play(x)
#!/usr/bin/env python3
# Any problems contact me on instagram @vulnerabilties
import pygame
pygame.mixer.init()
pygame.mixer.music.load('filename.extention')
pygame.mixer.music.play(999)
# YOUR CODE HERE