Thread: Cool code bits
View Single Post
  #7  
Old 07-23-2017, 10:05 AM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 65,367
Dinocanid is on a distinguished road
Default

The questions can be changed like this:
Code:
"question"		: 	"Question goes here",
				"choices"		: 	[
										"answer"


									],
				"correct"		: 	"correct answer",
				"explanation"	: 	"explain why that's the answer",
 
			},
So an example would be:
Code:
"question"		: 	"What's my favorite ice cream?",
				"choices"		: 	[
										"vanilla",
										"strawberry",
										"chocolate",
										"banana"
									],
				"correct"		: 	"vanilla",
				"explanation"	: 	"I like vanilla because it tasted good!",
 
			}
__________________
Reply With Quote