Advertisement
Guest User

anon program

a guest
Nov 21st, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 KB | None | 0 0
  1.  
  2. import time
  3.  
  4. print("Welcome, Anon \nBy starting this script you agree to obey the result you reach here. ")
  5. time.sleep(2)
  6. choice1 = input("Are you ready to make this choice? \nY or N?\n ")
  7. if choice1 == "y":
  8. time.sleep(3)
  9. print("Great, let's get you through some of the basics of decision making.\n")
  10. time.sleep(1)
  11. longshort = input("Think carefully, what is the nature of this decision, long or short term? \n")
  12. if longshort == "short":
  13. time.sleep(2)
  14. print("Uhmm... \nIt seems like we're looking at a short time decision, huh? ")
  15. time.sleep(2)
  16. critico1 = input("Will this short term decision interfere with your long term ambitions? Y or N? \n")
  17. if critico1 == "y":
  18. time.sleep(1)
  19. print("You shall not make choices that will interfere in your long term ambitions\n ")
  20. time.sleep(2)
  21. print("Preserve your goals. This program will be terminated. Obey the result.\n")
  22. time.sleep(2)
  23. print("PROGRAM TERMINATED")
  24. elif critico1 == "n":
  25. time.sleep(2)
  26. print("Then, you are free to make the choice you find most pleasing \n")
  27. time.sleep(1)
  28. print("This program will be terminated. Obey the result.\n ")
  29. time.sleep(2)
  30. print("Program Terminated")
  31. else:
  32. print("terminaated")
  33. elif longshort == "long":
  34. time.sleep(1)
  35. print("Okay, you are looking forward to making a long term decision...\n")
  36. time.sleep(1)
  37. print("Think if this long term decision will somehow interfere with your other already established goals\n")
  38. time.sleep(2)
  39. critico2 = input("Will this interfere with other goals? Y or N\n")
  40. if critico2 == "y":
  41. time.sleep(2)
  42. print("Well, you shall not make choices that will interfere in your ling term ambitions\n")
  43. time.sleep(2)
  44. print("Preserve your goals. This program will be terminated. Obey the result\n")
  45. time.sleep(2)
  46. print("PROGRAM TERMINATED")
  47. elif critico2 == "n":
  48. print("Will this decision deviate too much from already established goals?\n")
  49. time.sleep(2)
  50. critico3 = input("Y or N?\n")
  51. if critico3 == "y":
  52. time.sleep(1)
  53. print("You shall not make choices that will deviate from your other goals\n")
  54. time.sleep(2)
  55. print("Preserve your goals. This program will be terminated. Obey the result\n")
  56. time.sleep(3)
  57. print("PROGRAM TERMINATED")
  58. elif critico3 == "n":
  59. time.sleep(2)
  60. print("Do as you please")
  61. time.sleep(2)
  62. print("Program terminated. Obey the result")
  63. elif choice1 == "n":
  64. time.sleep(2)
  65. print("Come back when you are ready")
  66. time.sleep(1)
  67. print("PROGRAM TERMINATED")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement