Hey what's up? We are a free website solely relying on advertisement revenue!
Please support us by disabling your adBlock for this site and good things will happen!
def grade_scantron(answers,key):
count=-1
countt=0
if len(answers)!=len(key):
return -1
for i in answers:
count+=1
if i==key[count]:
countt+=1
return countt