I am making a game in PyGame and started to add some sounds to it. One sound I added would play right, but another sound I added will only play for milliseconds (I'm assuming, seeing that a short click is all I hear). I tried calling time.sleep() after it, but I am still getting that short click. I made a test program, and the sounds still aren't playing. I'll appreciate any help/ suggestions.
import pygame
pygame.init()
JohnCena = pygame.mixer.Sound('JohnCena.mp3')
def main():
JohnCena.play(0,0,0)
raw_input()
main()