I have the following code in one of my views. The problem is I can’t figure out how to refactor it into just one for loop. The only difference is the ‘item.’ part. I need all three variable values in the same template so I don’t think I can pass information from the urls.py. Any ideas of how I can rewrite this so I am not repeating myself?
Thanks.
def average(request):
cal_list = []
cal_list2 = []
cal_list3 = []
exams = Test.objects.filter(test__test_name__iexact="one")
for item in exams:
cal_list.append(int(item.start))
result = sum(cal_list) / float(165) * 100
result = result / len(cal_list)
result = int(round(result))
result = str(result) + '%'
for item in exams:
cal_list2.append(int(item.s1))
result2 = sum(cal_list2) / float(165) * 100
result2 = result2 / len(cal_list2)
result2 = int(round(result2))
result2 = str(result2) + '%'
for item in exams:
cal_list3.append(int(item.s2))
result3 = sum(cal_list3) / float(165) * 100
result3 = result3 / len(cal_list3)
result3 = int(round(result3))
result3 = str(result3) + '%'
return direct_to_template(request, 'a.html', {'result': result, 'result2': result2, 'result3': result3})
I would just create a function: