-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.py
64 lines (64 loc) · 5.01 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
question_data = [
{"category": "Entertainment: Music",
"type": "boolean",
"difficulty": "easy",
"question": "The music group Daft Punk got their name from a negative review they recieved.",
"correct_answer": "True",
"incorrect_answers": ["False"]},
{"category": "Entertainment: Video Games", "type": "boolean", "difficulty": "easy",
"question": "The name of the main character of the video game "The Legend of Zelda", is Zelda.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Mythology", "type": "boolean", "difficulty": "easy",
"question": "In Norse mythology, Thor once dressed as a woman.", "correct_answer": "True",
"incorrect_answers": ["False"]},
{"category": "Entertainment: Film", "type": "boolean", "difficulty": "easy",
"question": "The film "2001: A Space Odyssey" was released on December 31st, 2000.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Entertainment: Video Games", "type": "boolean", "difficulty": "easy",
"question": ""Undertale" is an RPG created by Toby Fox and released in 2015.", "correct_answer": "True",
"incorrect_answers": ["False"]},
{"category": "Geography", "type": "boolean", "difficulty": "easy",
"question": "There is a city called Rome in every continent on Earth.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Politics", "type": "boolean", "difficulty": "easy",
"question": "In 2016, the United Kingdom voted to stay in the EU.", "correct_answer": "False",
"incorrect_answers": ["True"]},
{"category": "Entertainment: Video Games", "type": "boolean", "difficulty": "easy",
"question": "In Kingdom Hearts the Paopu fruit is said to intertwine the destinies for two people forever.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "General Knowledge", "type": "boolean", "difficulty": "easy",
"question": "Bulls are attracted to the color red.", "correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Entertainment: Cartoon & Animations", "type": "boolean", "difficulty": "easy",
"question": "Bill Cipher in the show "Gravity Falls" is the good guy.", "correct_answer": "False",
"incorrect_answers": ["True"]},
{"category": "Entertainment: Video Games", "type": "boolean", "difficulty": "easy",
"question": "Minecraft can be played with a virtual reality headset.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "Vehicles", "type": "boolean", "difficulty": "easy",
"question": "The full English name of the car manufacturer BMW is Bavarian Motor Works", "correct_answer": "True",
"incorrect_answers": ["False"]},
{"category": "Entertainment: Video Games", "type": "boolean", "difficulty": "easy",
"question": "The main playable character of the 2015 RPG "Undertale" is a monster.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Science: Computers", "type": "boolean", "difficulty": "easy",
"question": "The Windows ME operating system was released in the year 2000.", "correct_answer": "True",
"incorrect_answers": ["False"]},
{"category": "Mythology", "type": "boolean", "difficulty": "easy",
"question": "According to Greek Mythology, Atlas was an Olympian God.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Entertainment: Video Games", "type": "boolean", "difficulty": "easy",
"question": "In "Undertale", the main character of the game is Sans.", "correct_answer": "False",
"incorrect_answers": ["True"]},
{"category": "Politics", "type": "boolean", "difficulty": "easy",
"question": "Donald Trump won the popular vote in the 2016 United States presidential election.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Entertainment: Video Games", "type": "boolean", "difficulty": "easy",
"question": "In Heroes of the Storm, the Cursed Hollow map gimmick requires players to kill the undead to curse the enemy team.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Geography", "type": "boolean", "difficulty": "easy",
"question": "New Haven is the capital city of the state of Connecticut in the United States.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Animals", "type": "boolean", "difficulty": "easy",
"question": "The freshwater amphibian, the Axolotl, can regrow it's limbs.", "correct_answer": "True",
"incorrect_answers": ["False"]}
]