Advertisement
Welton

Zumbies

Mar 25th, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3.  
  4. import pygame
  5. import sys
  6.  
  7. if sys.hexversion <= 34014960:
  8.     from Tkinter import *
  9. else:
  10.     from tkinter import *
  11.  
  12. file = 'alarm.mp3'
  13. root = Tk()
  14. pygame.init()
  15. pygame.mixer.init()
  16. pygame.mixer.music.load(file)
  17. pygame.mixer.music.play()
  18. root.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement