[
{
"dataset": "Kushman",
"iIndex": 1964,
"sQuestion": "The grocer has peanuts for 3.75 dollars a pound and walnuts for 2.75 dollars a pound. How many pounds of peanuts and walnuts must we mix to get 40 pounds of mixture to sell for 3.00 dollars per pound. ",
"lEquations": [
"(3.75*peanuts)+(2.75*walnuts)=3.0*40.0",
"peanuts+walnuts=40.0"
],
"lSolutions": [
10.0,
30.0
],
"grammarCheck": 1,
"templateNumber": 4
},
{
"dataset": "Kushman",
"iIndex": 2003,
"sQuestion": "Admission tickets to a football game were 60 cents for adults and 25 cents for children. Receipts for the day showed that 280 persons attended and 140 dollars was collected. How many adults attended? How many children attended?",
"lEquations": [
"(60*.01*noof_adults)+(25*.01*noof_childrens)=140.0",
"noof_adults+noof_childrens=280.0"
],
"lSolutions": [
200.0,
80.0
],
"grammarCheck": 1,
"templateNumber": 2
}
]
This is the Json File named as "Kushman.json". I want to parse it and save the results in different text files for Dataset, Questions and Solution as in the JSON file.