INF551 HW2
STATS.PY import sys,copy,json jFile=json.load(open(sys.argv[1])) sumOfHow,sumOfHowMany,sumOfHowMuch,sumOfWhat,sumOfWhen,sumOfWhere,sumOfWhich,sumOfWho,sumOfWhom=0,0,0,0,0,0,0,0,0 # index01=0 # while index01<len(jFile['data']): # for answer in jFile['data'][index]['paragraphs'][] # # index01+=1 for cataloge in jFile['data']: for contextQas in cataloge['paragraphs']: for qas in contextQas['qas']: qas['question'].strip() if qas['question'].startswith('How many') or qas['question'].startswith('how many'): sumOfHowMany+=1 elif qas['question'].startswith('How much') or qas['question'].startswit...