Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. print("This is a Geography Quiz.")
  2. phrase = input("Are you ready? ")
  3. if phrase == "Yes" or phrase == "yes":
  4. print("Great. Let's begin.")
  5. name = input("What is your name? :")
  6. print("Hello, " + name)
  7.  
  8. print("Question 1.")
  9. question1 = input("How many continents are there?> ")
  10. if question1 == "7":
  11. print("Great work!")
  12. elif question1 == "seven":
  13. print("Great work!")
  14. else:
  15. print("Incorrect.")
  16.  
  17. print("Question 2.")
  18. question2 = input("Name one continent.> ")
  19. if question2 == "North America":
  20. print("Excellent!")
  21. elif question2 == "South America":
  22. print("Excellent!")
  23. elif question2 == "Africa":
  24. print("Excellent!")
  25. elif question2 == "Europe":
  26. print("Excellent!")
  27. elif question2 == "Asia":
  28. print("Excellent!")
  29. elif question2 == "Australia":
  30. print("Excellent!")
  31. elif question2 == "Antartica":
  32. print("Excellent!")
  33. else:
  34. print("Incorrect.")
  35.  
  36. print("Question 3.")
  37. question3 = input("How many oceans are there?> ")
  38. if question3 == "5":
  39. print("Great work!")
  40. elif question3 == "five":
  41. print("Great work!")
  42. elif question3 == "Five":
  43. print("Great work!")
  44. else:
  45. print("Incorrect.")
  46.  
  47. print("Question 4.")
  48. question4 = input("Name one ocean.> ")
  49. if question4 == "Pacific Ocean":
  50. print("You are the best!")
  51. elif question4 == "Atlantic Ocean":
  52. print("You are the best!")
  53. elif question4 == "Indian Ocean":
  54. print("You are the best!")
  55. elif question4 == "Arctic Ocean":
  56. print("You are the best!")
  57. elif question4 == "Southern Ocean":
  58. print("You are the best!")
  59. else:
  60. print("Incorrect.")
  61.  
  62. print("Congratulations. You have come to the end of the Geography quiz. We hope that you have enjoyed it. Thank you and goodbye.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement