-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.py
153 lines (153 loc) · 4.34 KB
/
data.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
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
# use opentdb.com to get more trivia questions
question_data = [
{
"type": "boolean",
"difficulty": "easy",
"category": "History",
"question": "Former United States Presidents John Adams and Thomas Jefferson died within hours of each other.",
"correct_answer": "True",
"incorrect_answers": [
"False"
]
},
{
"type": "boolean",
"difficulty": "easy",
"category": "Entertainment: Video Games",
"question": ""Sonic the Hedgehog 2" originally was going to have a time travel system.",
"correct_answer": "True",
"incorrect_answers": [
"False"
]
},
{
"type": "boolean",
"difficulty": "medium",
"category": "Entertainment: Video Games",
"question": "Minecraft wasn’t the original name to Minecraft.",
"correct_answer": "True",
"incorrect_answers": [
"False"
]
},
{
"type": "boolean",
"difficulty": "medium",
"category": "Science: Mathematics",
"question": "You can square root a negative number with an imaginary number "i".",
"correct_answer": "True",
"incorrect_answers": [
"False"
]
},
{
"type": "boolean",
"difficulty": "medium",
"category": "Science & Nature",
"question": "A defibrillator is used to start up a heartbeat once a heart has stopped beating.",
"correct_answer": "False",
"incorrect_answers": [
"True"
]
},
{
"type": "boolean",
"difficulty": "easy",
"category": "Science & Nature",
"question": "Celiac Disease is a disease that effects the heart, causing those effected to be unable to eat meat.",
"correct_answer": "False",
"incorrect_answers": [
"True"
]
},
{
"type": "boolean",
"difficulty": "medium",
"category": "Celebrities",
"question": "Michael Jackson had a pet python named ‘Crusher’.",
"correct_answer": "True",
"incorrect_answers": [
"False"
]
},
{
"type": "boolean",
"difficulty": "medium",
"category": "Entertainment: Video Games",
"question": "In Portal, the Companion Cube's ARE sentient.",
"correct_answer": "True",
"incorrect_answers": [
"False"
]
},
{
"type": "boolean",
"difficulty": "easy",
"category": "History",
"question": "In World War ll, Great Britian used inflatable tanks on the ports of Great Britain to divert Hitler away from Normandy/D-day landing.",
"correct_answer": "True",
"incorrect_answers": [
"False"
]
},
{
"type": "boolean",
"difficulty": "hard",
"category": "Politics",
"question": "Joko Widodo has appeared in the cover of a TIME magazine.",
"correct_answer": "True",
"incorrect_answers": [
"False"
]
},
{
"type": "boolean",
"difficulty": "medium",
"category": "General Knowledge",
"question": "The French word for "glass" is "glace".",
"correct_answer": "False",
"incorrect_answers": [
"True"
]
},
{
"type": "boolean",
"difficulty": "medium",
"category": "Science: Computers",
"question": ""Windows NT" is a monolithic kernel.",
"correct_answer": "False",
"incorrect_answers": [
"True"
]
},
{
"type": "boolean",
"difficulty": "medium",
"category": "Science: Gadgets",
"question": "The Western Electric Model 500 telephone uses tone dialing to dial phone numbers.",
"correct_answer": "False",
"incorrect_answers": [
"True"
]
},
{
"type": "boolean",
"difficulty": "easy",
"category": "Entertainment: Books",
"question": "Shub-Niggurath is a creature that was created by \tJ. R. R. Tolkien in his novel "The Lord of The Rings".",
"correct_answer": "False",
"incorrect_answers": [
"True"
]
},
{
"type": "boolean",
"difficulty": "medium",
"category": "General Knowledge",
"question": "The commercial UK channel ITV stands for "International Television".",
"correct_answer": "False",
"incorrect_answers": [
"True"
]
}
]