forked from ksu-hmi/GiggleGums
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuiz.py
35 lines (33 loc) · 1.19 KB
/
Quiz.py
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
quiz_data = [
{
"question": "Which of these is used to keep your hands clean?",
"choices": ["Hand santizer", "Soap", "Towel"],
"answer": "Soap"
},
{
"question": " What is used to clean the area between your fingers?",
"choices": ["soap", "hand santizer", "towel"],
"answer": "soap"
},
{
"question": " What should you use to protect your hands when interacting with people?",
"choices": ["wash your hands", "shake hands", "do nothing"],
"answer": "wash your hands"
},
{
"question": "Which picture represents a healthy way to keep your hands clean?",
"choices": ["soap", "gloves", "cover your mouth"],
"answer": "soap"
},
{
"question": " Which picture shows a hand with a germs?",
"choices": ["clean hand", "hand with glove", "hand with dirt"],
"answer": "clean head"
},
{
"question": "What should you do when someone next to you coughs and then tries to shake your hand?",
"choices": ["Shake their hand","Avoid shaking their hand","Shout","Cry"],
"answer": "Avoid shaking their hand"
},
# Add more questions here
]