#!/usr/bin/env python import pygame pygame.init() song=pygame.mixer.Sound('/home/pi/python_games/match0.wav') clock = pygame.time.Clock() song.play() print "use CTRL C to stop" while True: clock.tick(60) pygame.quit()