-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.py
32 lines (32 loc) · 2.37 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
question_data = [
{"category": "General Knowledge", "type": "boolean", "difficulty": "easy",
"question": "Gumbo is a stew that originated in Louisiana.", "correct_answer": "True",
"incorrect_answers": ["False"]},
{"category": "General Knowledge", "type": "boolean", "difficulty": "easy",
"question": "French is an official language in Canada.", "correct_answer": "True",
"incorrect_answers": ["False"]},
{"category": "General Knowledge", "type": "boolean", "difficulty": "easy",
"question": "It is automatically considered entrapment in the United States if the police sell you illegal"
" substances without revealing themselves.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "General Knowledge", "type": "boolean", "difficulty": "easy",
"question": "A scientific study on peanuts in bars found traces of over 100 unique specimens of urine.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "General Knowledge", "type": "boolean", "difficulty": "easy",
"question": "Bulls are attracted to the color red.", "correct_answer": "False",
"incorrect_answers": ["True"]},
{"category": "General Knowledge", "type": "boolean", "difficulty": "easy",
"question": ""Ananas" is mostly used as the word for Pineapple in other languages.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "General Knowledge", "type": "boolean", "difficulty": "easy",
"question": "You can legally drink alcohol while driving in Mississippi.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "General Knowledge", "type": "boolean", "difficulty": "easy",
"question": "On average, at least 1 person is killed by a drunk driver in the United States every hour.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "General Knowledge", "type": "boolean", "difficulty": "easy",
"question": "One of Donald Trump's 2016 Presidential Campaign promises was to build a border wall between the United States and Mexico.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "General Knowledge", "type": "boolean", "difficulty": "easy",
"question": "The National Animal of Scotland is the Unicorn.",
"correct_answer": "True", "incorrect_answers": ["False"]}]