Guest User

Untitled

a guest
May 26th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1. from time import sleep #beginning of leons code
  2.  
  3. print("welcome to the magellan travel game")
  4. sleep(1)
  5. print("this game is meant to teach you about magellans journey")
  6. sleep(1)
  7. print("but first, a little about magellan")
  8. sleep(1)
  9. print("Ferdinan Magellan was a portugese explorer")
  10. sleep(1)
  11. print("he was the first to plan an expedition around the world")
  12. sleep(1)
  13. print("some of the crew tried to mutiny on his journey but he executed the leaders")
  14. sleep(1)
  15. print("lets start the journey")
  16. print("where did he depart from?")
  17. print("type 1 for seville, 2 for birmingham, 3 for madrid and 4 for portugal")
  18. while True:
  19.  
  20. choice1=input("")
  21.  
  22. if choice1 == "1":
  23. print("that is correct he departd seville in 1519")
  24. break
  25.  
  26. elif choice1 == "2":
  27. print("incorrect, try again") #this is a loop and an "if" "elif" "else" statement
  28.  
  29. elif choice1 == "3":
  30. print("incorrect, try again")
  31.  
  32. elif choice1 == "4":
  33. print("incorrect, try again")
  34.  
  35. else:
  36. print("try again")
  37.  
  38. print("on the way, king manuel the 1st ordered a portugese fleet to pursue magellan")
  39. sleep(1)
  40. print("some of the crew tried to mutiny on his journey but he executed the leaders")
  41. sleep(1)
  42. print("magellan evaded this fleet and docked where?")
  43. sleep(1)
  44. print("type 1 for columbia, 2 for brazil, 3 for the canaries and 4 for an iceberg")
  45. while True:
  46. choice2=input("")
  47.  
  48. if choice2 == "1":
  49. print("incorrect, try again")
  50.  
  51. elif choice2 == "2":
  52. print("incorrect, try again")
  53.  
  54. elif choice2 == "3":
  55. print("correct, he docked for a temporary stop in the canaries before setting sail to his next location")
  56. break
  57.  
  58. elif choice2 == "4":
  59. print("incorrect, try again")
  60.  
  61. else:
  62. print("try again")
  63.  
  64. print("after a quick stop at the canaries, he docked just off what is now rio de janero")
  65. sleep(1)
  66. print("after a while docked, 3 out of the 5 ship captains attemppted mutiny, however magellan killed them and hung their bodies on the shore")
  67. sleep(1)
  68. print("the strait of magellan was called _________ before magellan discovered it")
  69. print("type 1 for santamaria canal, 2 for god's strait, 3 for all saints channel and 4 for senorita cortez stream")
  70.  
  71. while True:
  72. choice3=input("")
  73. if choice3 == "1":
  74. print("incorrect, try again")
  75.  
  76. elif choice3 == "2":
  77. print("incorrect, try again")
  78.  
  79. elif choice3 == "3":
  80. print("correct, onto the next question")
  81. break
  82.  
  83. elif choice == "4":
  84. print("incorrect, try again")
  85.  
  86. else:
  87. print("try again")
  88.  
  89.  
  90. print("after passing through the strait of magellan, he resumed his journey.")
  91. print("he was the european to sail the pacific")
  92. print("him and his crew then docked in which country?")
  93. print(" type 1 for china, 2 for japan, 3 for australia and 4 for the philippines")
  94. while True:
  95. choice4=input("")
  96.  
  97. if choice4 == "1":
  98. print("incorrect, try again")
  99.  
  100. elif choice4 == "2":
  101. print("incorrect, try again")
  102.  
  103. elif choice4 == "3":
  104. print("incorrect, try again")
  105.  
  106. elif choice4 == "4":
  107. print("that is correct")
  108. break
  109.  
  110. else:
  111. print("incorrect, try again")
  112.  
  113. print("after docking in the philippines, magellan met a local chief")
  114. print("after converting them to christianity, the chief convinced them to help him to overthrow a nearby tribe")
  115. print("however, during this battle, magellan was shot with a a poison arrow and his crew left him to die")
  116. print("his crew continued on with their journey") #end of leons code
Add Comment
Please, Sign In to add comment