I have simple python turtle code which works fine, but when I add music, music plays, but turtle program crashes. What are the fixes for that? Here is my code:
import turtle
import playsound2
t = turtle.Turtle()
playsound2.playsound("song.mp3")
t.forward(50)
turtle.mainloop()