Guest User

Untitled

a guest
Apr 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. """
  2. this is a program that will play a soundclip when you answer a question
  3. """
  4.  
  5.  
  6. from time import sleep
  7. import winsound
  8.  
  9. print("Try and solve this equation....")
  10. sleep(2)
  11. print("If your small human mind can handle it")
  12. sleep(2)
  13. equation=input("Solve this: (143(5)+67)5")
  14. print("Your answer " + (equation) + " is wrong")
  15. sleep(2)
  16. print("Stupid human")
  17. sleep(1)
  18. winsound.PlaySound("seinfeldcds", winsound.SND_FILENAME)
  19.  
  20. """
  21. the code will look something like this:
  22. Try and solve this equation....
  23. If your small human mind can handle it
  24. Solve this: (143(5)+67)5 6
  25. Your answer 6 is wrong
  26. Stupid human
  27. """
Add Comment
Please, Sign In to add comment