Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2015
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. from time import *
  2. import winsound
  3. from winsound import *
  4. input = input('1 for playlist - 2 for Circles - 3 for BullsEye ')
  5. var = int(input)
  6. while var==1:
  7. winsound.PlaySound("Circles.mp3", winsound.SND_ALIAS)
  8. winsound.PlaySound("BullsEye.mp3", winsound.SND_ALIAS)
  9. if var==2:
  10. winsound.PlaySound("Circles.mp3", winsound.SND_ALIAS)
  11. if var==3:
  12. winsound.PlaySound("BullsEye.mp3", winsound.SND_ALIAS)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement