Guest User

Untitled

a guest
May 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. from time import sleep # ervin
  2. while True: # Ervin
  3.  
  4.  
  5. print("This is the minus section everytime you get a question wrong you go back to the start") #ervin
  6. sleep(2) #ervin
  7.  
  8. while True:
  9. choice=input("what is 33-11=") #ervin
  10. if choice == "22": #ervin
  11. print("that is the right answer you move on to the next question")#ervin
  12. break #ervin
  13. else: #ervin
  14. print("incorrect") #ervin
  15.  
  16. while True: #ervin
  17. print("question 2.") #ervin
  18. choice=input("what is 80-12") #ervin
  19. if choice == "68": #ervin
  20. print("that is the correct answer") #ervin
  21. break #ervin
  22. else: #ervin
  23. print("incorrect") #ervin
  24.  
  25. while True: #ervin
  26. print("question 3.") #ervin
  27. choice=input("what is 56-9") #ervin
  28. if choice == "47": #ervin
  29. print("that is correct you are smart") #ervin
  30. break #ervin
  31. else: #ervin
  32. print("incorrect") #ervin
  33.  
  34. while True: #ervin
  35. print("question 4.") #ervin
  36. choice=input("what is 68-13") #ervin
  37. if choice == "55": #ervin
  38. print("that is correct") #ervin
  39. break #ervin
  40. else: #ervin
  41. print("incorrect") #ervin
  42.  
  43. while True: #ervin
  44. print("question 5. this the last question of minus") #ervin
  45. choice=input("what is 99-99") #ervin
  46. if choice == "0": #ervin
  47. print("that is correct you are moving on to the next round") #ervin
  48. break #ervin
  49. else: #ervin
  50. print("incorrect") #ervin
Add Comment
Please, Sign In to add comment