forked from FutureTechCity/codeclub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfinitywarquiz.py
More file actions
191 lines (164 loc) · 5 KB
/
infinitywarquiz.py
File metadata and controls
191 lines (164 loc) · 5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
print("\n") # Blank lines ("\n" means "new line")
print("*****************************************************************")
print("Welcome to the ultimate immpossible Avengers Infinity war quiz!!!")
print("*****************************************************************")
score = 0
print("\n") # Blank lines ("\n" means "new line")
print(" Qustion 1. Who is the main villian of Infinity war?")
print("A. Green Goblin")
print("B. Thanos")
print("C. Doctor Octopus")
print("D. Spider man")
choice = input("Type in a letter to guess: ")
if choice == "B" or choice == "b":
print("Well done, that's right!")
score = score + 1
else:
print("Wrong, wrong, wrong!")
print("\n") # Blank lines ("\n" means "new line")
print("Question 2. Who is the first to die?")
print("A. Loki")
print("B. Gamora")
print("C. Nebula")
print("D. Thor")
choice = input("Type in a letter to guess: ")
if choice == "A" or choice == "a":
print("Well done, that's right!")
score = score + 1
else:
print("Wrong, wrong, wrong!")
print("\n") # Blank lines ("\n" means "new line")
print("Question 3. How many infinity stones are there?")
print("A. 11")
print("B. 1")
print("C. 6")
print("D. 2")
choice = input("Type in a letter to guess: ")
if choice == "C" or choice == "c":
print("Well done, that's right!")
score = score + 1
else:
print("Wrong, wrong, wrong!")
print("\n")
print(".Question 4 Who nearly killed Thanos?")
print("A. Iron man")
print("B. Spider man")
print("C. Thor")
print("D. Gamora")
choice = input("Type in a letter to guess: ")
if choice == "C" or choice == "c":
print("Well done, that's right!")
score = score + 1
else:
print("Wrong, wrong, wrong!")
print("\n")
print("The end of the infinity war quiz! You scored " + str(score))
print("\n")
print("**************************************************")
print("Nice. Now give this next quiz... Marvel knowledge!")
print("**************************************************")
print("\n")
score = 0
print(".Question 1. What is Star-lord's really name?")
print("A. Tony Stark ")
print("B. Peter Parker")
print("C. Thor")
print("D. Peter Quill")
choice = input("Type in a letter to guess: ")
if choice == "D" or choice == "d":
print("Well done, that's right!")
score = score + 1
else:
print("Wrong, wrong, wrong!")
print("\n")
print(".Question 2. What is Thanos?")
print("A. A God ")
print("B. A Celestial")
print("C. A Titan")
print("D. A King")
choice = input("Type in a letter to guess: ")
if choice == "C" or choice == "c":
print("Well done, that's right!")
score = score + 1
else:
print("Wrong, wrong, wrong!")
print("\n")
print(".Question 3. Who is N'Jadaka known as?")
print("A. Erik Stevens")
print("B. Thor")
print("C. T'Challa")
print("D. Peter Quill")
choice = input("Type in a letter to guess: ")
if choice == "A" or choice == "a":
print("Well done, that's right!")
score = score + 1
else:
print("Wrong, wrong, wrong!")
print("\n")
print(".Question 4. Who is the winter solider?")
print("A. Erik Stevens")
print("B. Bucky Barnes")
print("C. Tony Stark")
print("D. Peter Parker")
choice = input("Type in a letter to guess: ")
if choice == "B" or choice == "b":
print("Well done, that's right!")
score = score + 1
else:
print("Wrong, wrong, wrong!")
print("The end of the infinity war quiz! You scored " + str(score))
print("Wow, you are really good at this.")
print("Now try the third section that will be split into three parts")
score = 0
print("Part 1: Spiderman Homecoming")
print("\n")
print(".Question 1. Who is the vulture?")
print("A. Erik Stevens")
print("B. Adrian Toomes")
print("C. Tony Stark")
print("D. Peter Quill")
choice = input("Type in a letter to guess: ")
if choice == "B" or choice == "b":
print("Well done, that's right!")
score = score + 1
else:
print("Wrong, wrong, wrong!")
print("\n")
print(".Question 2. What is the name of the super hero that gave Spidey his new suit?")
print("A. Killmonger")
print("B. Winter Solider")
print("C. Iron man")
print("D. Captain America")
choice = input("Type in a letter to guess: ")
if choice == "C" or choice == "c":
print("Well done, that's right!")
score = score + 1
else:
print("Wrong, wrong, wrong!")
print("\n")
print(".Question 3. Who is Spiderman's best friend?")
print("A. MJ")
print("B. Adrian Toomes")
print("C. The Shocker")
print("D. Ned")
choice = input("Type in a letter to guess: ")
if choice == "D" or choice == "d":
print("Well done, that's right!")
score = score + 1
else:
print("Wrong, wrong, wrong!")
print("The end of Part 1: Spiderman Homecoming! You scored " + str(score))
print("Part 2: Avengers Civil War")
print("\n")
print(".Question 1. Who led the two sides?")
print("A. Spider man and Black Panther")
print("B. Thanos and Ronan")
print("C. Captain America and Iron man")
print("D. DDtar-lord and Yondu")
choice = input("Type in a letter to guess: ")
if choice == "C" or choice == "c":
print("Well done, that's right!")
score = score + 1
else:
print("Wrong, wrong, wrong!")
input("\nPress ENTER to exit program")