You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'When two army ant colonies encounter each other, which of the following happens?',
101
+
'Which of the following is true?',
102
+
'What is the main reason army ants are so feared?',
103
+
'How many different species are there in army ant groups?',
104
+
'What will leafcutter ants do first to defend against army ants?',
105
+
'What will leafcutter ants do second to defend against army ants?',
106
+
'Army ant species Nomamyrmex Esenbeckii is the only known species that can successfully attack a mature colony of leafcutters.',
107
+
'The war of ants only happens among different species.']
108
+
OPTIONS= [['Some groups just don\'t get along', 'Don’t be greedy, be content with what you have', 'Death is as much part of life, as life itself', 'Where there is a will, there is a way'],
109
+
['160 billion years ago', '160 million years ago', '6 million years ago', '6 thousand years ago'],
110
+
['The colonies fight, to the death', 'The colonies pass through each other or just move away from each other', 'The colonies merge together', 'None of the above'],
111
+
['Army ants are so deadly that other ant species had to specialize to survive their presence', 'Many species stand their ground and fight instead of evacuating when seeing an army ant scout', 'Some ants have big square heads built to crush army ants', 'None of the above'],
112
+
['The fact that they come in extremely large numbers', 'Their painful bites', 'Their venomous stingers', 'Their ability to burrow'],
['Kick them', 'Lock on them and try to cut through their heads', 'Block entrances to their nest with their square heads', 'Sting them to death, in a mob'],
115
+
['They seal of entrances to their nest', 'They run away', 'They rush in and surround their eggs', 'None of the above'],
116
+
['True', 'False'],
117
+
['True', 'False']]
118
+
ANSWERS= [0,1,1,0,0,3,1,0,0,1]
119
+
name=None
120
+
email=None
121
+
v=None
122
+
ix=None
123
+
question=None
124
+
radio_buttons=None
125
+
next_button=None
126
+
response=None
127
+
128
+
score=0
129
+
selected= []
130
+
131
+
font= ('Menlo', 30)
132
+
133
+
root=tk.Tk()
134
+
root.geometry('1450x1000')
135
+
root.title('Quiz')
136
+
default=root.cget('bg')
137
+
138
+
greeting=tk.Label(root, text='Enter your email and name and start the quiz, good luck!', font=font)
0 commit comments