playing music with pygame code example
Example 1: How to play music without pygame
from playsound import playsound
playsound('audio.mp3')
#Hope it helps :)
Example 2: pygame music player
import pygame
pygame.init()
pygame.mixer.play('datei.wav')