Esse exercicio de tocar mp3 player eu resovi de dois jeito um usando a
biblioteca soundplay ficou da sequinte forma :
from soundplay import playsound
playsound('ex021.mp3')
e também consegui fazer usando o pygame mesmo com aviso porem com algumas modificações antes do pygame.init() tive que acrecentar o comando:pygame.mixer.init() ficando assim :
import pygame
pygame.mixer.init()
pygame.init()
pygame.mixer.music.load('ex021.mp3')
pygame.mixer_music.play()
pygame.event.wait()
espero que ajude alguem !