down voteacceptedFor windows:
you could use winsound.SND_ASYNC to play them asynchronously
import winsound
winsound.PlaySound("filename", winsound.SND_ASYNC | winsound.SND_ALIAS )
To stop playing
winsound.PlaySound(None, winsound.SND_ASYNC)
for other platforms: You can try this Pygame/SDL
pygame.mixer.init()
pygame.mixer.music.load("file.mp3")
pygame.mixer.music.play()
Hope this will help!
To learn more, go for Python Master course today.
Thank!