Guest User

Untitled

a guest
May 27th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.98 KB | None | 0 0
  1. print("This was created by Rayan Bekuit and he says to have fun")
  2. can = input("This will evaluate you can you trust us with your information\n type Y for yes and N for no ")
  3. if can == 'Y':
  4. print("Okay let us start")
  5. elif can == 'y':
  6. print("Okay let us start")
  7. elif can == 'yes':
  8. print("Okay let us start")
  9. elif can == 'yah':
  10. print("Okay let us start")
  11. elif can == 'N' or 'n':
  12. print("get away from this app for ever")
  13. exit(1)
  14. do_you = int(input("do you want option 1, 2, 3 or 4 please put those two numbers and nothing else"))
  15.  
  16.  
  17. if do_you == 1:
  18. username = input("What will be your username")
  19. password = input("What will be your password")
  20. name = input("What is name")
  21. age = input("How old are you")
  22. weight = int(input("How much do you weigh in kg please, no decimal"))
  23. height = int(input("Now tell me how tall you are in feet, no decimal"))
  24. gender = input("What is your gender")
  25. hobby = input('what is one of your hobbies')
  26. school = input("What school do you go to")
  27. car = input("What car do you drive")
  28. email = input("What is your email ")
  29. problem = input("What do you not like about this program")
  30. verify_password = input("Type in your passwrod again")
  31. if verify_password == password:
  32. print("You have just made an account")
  33. else:
  34. print("You idiot you can not remember your own password, try again")
  35. verify_password = input()
  36. if verify_password == password:
  37. print("Finally you got it")
  38.  
  39. verify_username = input("Please retype your username")
  40.  
  41. if verify_username == username:
  42. print("We are now good to go")
  43. else:
  44. print("C'mon stupid, try again")
  45. verify_username = input("Go put it back in")
  46. if verify_username == username:
  47. print("It is about time")
  48. print("now we are ready to start the game and we know all you information {0} HAHAHAHAHA!!!!!!".format(name))
  49. print("Here is my proof\n")
  50. print(
  51. "\tyou have a {0} as a car your email is {1} you go to the school called {2} your hobby is {3} you are a {4} your""name is {5} your age is {6} you weigh {7} and you are {8} feet tall".format(
  52. car, email, school, hobby, gender, name, age, weight, height))
  53. elif do_you == 2:
  54. # variables
  55. show = input("What show do you like?")
  56. color_couch = input("What color is your couch?")
  57. food = input("Name me a food, please")
  58. time = int(input("what time is it in one number one to twenty-four(ex: 12)"))
  59.  
  60. # Main part
  61. if time <= 12:
  62. print(
  63. "I was sitting in my house watching {0} on my {1} couch, while my maid was cooking {2} before noon".format(
  64. show, color_couch, food))
  65. else:
  66. print("I was sitting in my house watching {0} on my {1} couch, while my maid was cooking {2} before evening".format(show, color_couch, food))
  67. elif do_you == 3:
  68. phrase = input("Give me a phrase that you like")
  69. number = int(input("Give me a big number"))
  70. for j in range(0, number):
  71. print("{}".format(j) + ' ' + "{0}".format(phrase))
  72.  
  73. mean = input("Write a mean sentence about your enemy")
  74. enemy = input("write your enemies name here please")
  75. number_2 = int(input("give me a huge number"))
  76.  
  77. for k in range(0, number_2):
  78. print('{}'.format(k) + ' ' + "{0}, {1}".format(enemy, mean))
  79. elif do_you == 4:
  80. print("If it says false you are wrong\n\nIf it says true it is good\n")
  81.  
  82. parrot = input("give me a sentence")
  83. print(parrot + "\n")
  84.  
  85. tri = (input("Tell me a letter"))
  86. print(tri)
  87. print(tri in parrot)
  88.  
  89. tri = (input("\nTell me 2 letters"))
  90. print(tri)
  91. print(tri in parrot)
  92.  
  93. tri = (input("\nTell me 3 letters"))
  94. print(tri)
  95. print(tri in parrot)
  96.  
  97. tri = (input("\nTell me 4 letters"))
  98. print(tri)
  99. print(tri in parrot)
  100.  
  101. tri = (input("\nTell me 5 letters"))
  102. print(tri)
  103. print(tri in parrot)
  104.  
  105. tri = (input("\nTell me 6 letters"))
  106. print(tri)
  107. print(tri in parrot)
  108.  
  109. else:
  110. print("I gave you four options, but no you give a random thing I am kicking yo out")
  111. exit(1)
  112.  
  113. again = input("Do you want to play again yes or no please type capital y like this Y or else I will sign you out")
  114. if again == 'Y':
  115. if do_you == 1:
  116. username = input("What will be your username")
  117. password = input("What will be your password")
  118. name = input("What is name")
  119. age = input("How old are you")
  120. weight = int(input("How much do you weigh in kg please, no decimal"))
  121. height = int(input("Now tell me how tall you are in feet, no decimal"))
  122. gender = input("What is your gender")
  123. hobby = input('what is one of your hobbies')
  124. school = input("What school do you go to")
  125. car = input("What car do you drive")
  126. email = input("What is your email ")
  127. problem = input("What do you not like about this program")
  128. verify_password = input("Type in your passwrod again")
  129. if verify_password == password:
  130. print("You have just made an account")
  131. else:
  132. print("You idiot you can not remember your own password, try again")
  133. verify_password = input()
  134. if verify_password == password:
  135. print("Finally you got it")
  136.  
  137. verify_username = input("Please retype your username")
  138.  
  139. if verify_username == username:
  140. print("We are now good to go")
  141. else:
  142. print("C'mon stupid, try again")
  143. verify_username = input("Go put it back in")
  144. if verify_username == username:
  145. print("It is about time")
  146. print("now we are ready to start the game and we know all you information {0} HAHAHAHAHA!!!!!!".format(name))
  147. print("Here is my proof\n")
  148. print(
  149. "\tyou have a {0} as a car your email is {1} you go to the school called {2} your hobby is {3} you are a {4} your""name is {5} your age is {6} you weigh {7} and you are {8} feet tall".format(
  150. car, email, school, hobby, gender, name, age, weight, height))
  151. elif do_you == 2:
  152. # variables
  153. show = input("What show do you like?")
  154. color_couch = input("What color is your couch?")
  155. food = input("Name me a food, please")
  156. time = int(input("what time is it in one number one to twenty-four(ex: 12)"))
  157.  
  158. # Main part
  159. if time <= 12:
  160. print(
  161. "I was sitting in my house watching {0} on my {1} couch, while my maid was cooking {2} before noon".format(
  162. show, color_couch, food))
  163. else:
  164. print(
  165. "I was sitting in my house watching {0} on my {1} couch, while my maid was cooking {2} before evening".format(
  166. show, color_couch, food))
  167. elif do_you == 3:
  168. phrase = input("Give me a phrase that you like")
  169. number = int(input("Give me a big number"))
  170. for j in range(0, number):
  171. print("{}".format(j) + ' ' + "{0}".format(phrase))
  172.  
  173. mean = input("Write a mean sentence about your enemy")
  174. enemy = input("write your enemies name here please")
  175. number_2 = int(input("give me a huge number"))
  176.  
  177. for k in range(0, number_2):
  178. print('{}'.format(k) + ' ' + "{0}, {1}".format(enemy, mean))
  179. elif do_you == 4:
  180. print("If it says false you are wrong\n\nIf it says true it is good\n")
  181.  
  182. parrot = input("give me a sentence")
  183. print(parrot + "\n")
  184.  
  185. tri = (input("Tell me a letter"))
  186. print(tri)
  187. print(tri in parrot)
  188.  
  189. tri = (input("\nTell me 2 letters"))
  190. print(tri)
  191. print(tri in parrot)
  192.  
  193. tri = (input("\nTell me 3 letters"))
  194. print(tri)
  195. print(tri in parrot)
  196.  
  197. tri = (input("\nTell me 4 letters"))
  198. print(tri)
  199. print(tri in parrot)
  200.  
  201. tri = (input("\nTell me 5 letters"))
  202. print(tri)
  203. print(tri in parrot)
  204.  
  205. tri = (input("\nTell me 6 letters"))
  206. print(tri)
  207. print(tri in parrot)
  208.  
  209.  
  210. else:
  211. print("okay signing you out thank you for your cooperation")
  212. exit(1)
Add Comment
Please, Sign In to add comment