Guest User

Untitled

a guest
May 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. from time import sleep
  2.  
  3. print("You wake up inside a calculator. You need to answer every single question right to get outside of the calculator.") #sean
  4. sleep(3) #sean
  5. print("If you get 1 question wrong you will go straight back to the start and you will have to answer all the questions again") #sean
  6. sleep(10) #sean
  7.  
  8. print("you are in your first level of the calculator. ADDITION!!! This will be the first and easiest level. How far will you make it?") #sean
  9. while True: #sean
  10. choice=input("what is 1 + 1 ?") #sean
  11. if choice == "2": #sean
  12. print("Congrats you got the first one right!") #sean
  13. break #sean
  14.  
  15. else: #sean
  16. print("incorrect") #sean
  17.  
  18. while True: #sean
  19. choice=input("what is 25 + 62 ?") #sean
  20. if choice == "87": #sean
  21. print("Well Done you're on a role!") #sean
  22. break #sean
  23.  
  24. else: #sean
  25. print("You got it wrong sorry!!") #sean
  26.  
  27. while True: #sean
  28. choice=input("what is 120 + 115 + 11?") #sean
  29. if choice == "246": #sean
  30. print("3 Already!! yesss") #sean
  31. break #sean
  32.  
  33. else: #sean
  34. print("Whoops That's wrong!!") #sean
  35.  
  36. while True: #sean
  37. choice=input("what is 225 + 33 + 192 + 68?") #sean
  38. if choice == "518": #sean
  39. print("4!! you are insane") #sean
  40. break #sean
  41.  
  42. else: #sean
  43. print("Unlucky but thats wrong!!") #sean
  44.  
  45. while True: #sean
  46. choice=input("what is 100+666+420+77+88+119?") #sean
  47. if choice == "1470": #sean
  48. print("5?! You've made it all the way congratulations") #sean
  49. break #sean
  50.  
  51. else: #sean
  52. print("Get Gud kid!!") #sean
  53.  
  54.  
  55. print("This is the minus section everytime you get a question wrong you go back to the start") #ervin
  56. sleep(2) #ervin
  57.  
  58. while True:
  59. choice=input("what is 33-11=") #ervin
  60. if choice == "22": #ervin
  61. print("that is the right answer you move on to the next question")#ervin
  62. break #ervin
  63. else: #ervin
  64. print("incorrect") #ervin
  65.  
  66. while True: #ervin
  67. print("question 2.") #ervin
  68. choice=input("what is 80-12") #ervin
  69. if choice == "68": #ervin
  70. print("that is the correct answer") #ervin
  71. break #ervin
  72. else: #ervin
  73. print("incorrect") #ervin
  74.  
  75. while True: #ervin
  76. print("question 3.") #ervin
  77. choice=input("what is 56-9") #ervin
  78. if choice == "47": #ervin
  79. print("that is correct you are smart") #ervin
  80. break #ervin
  81. else: #ervin
  82. print("incorrect") #ervin
  83.  
  84. while True: #ervin
  85. print("question 4.") #ervin
  86. choice=input("what is 68-13") #ervin
  87. if choice == "55": #ervin
  88. print("that is correct") #ervin
  89. break #ervin
  90. else: #ervin
  91. print("incorrect") #ervin
  92.  
  93. while True: #ervin
  94. print("question 5. this the last question of minus") #ervin
  95. choice=input("what is 99-99") #ervin
  96. if choice == "0": #ervin
  97. print("that is correct you are moving on to the next round") #ervin
  98. break #ervin
  99. else: #ervin
  100. print("incorrect") #ervin
Add Comment
Please, Sign In to add comment