I am new to python and have been trying to get it to play an mp3. I tried the code below import pygame, sys, time from pygame.locals import * pygame.init() DISPLAYSURF = pygame.display.set_mode((400,300)) pygame.display.set_caption('My MP3') pygame.mixer.init() pygame.mixer.music.load('Songbird.mp3'...