I have seen similar posts, but I can't seem to apply those answers to my problem. I am not able to see exactly what I am doing wrong here. I need to print each of 5 scores, and their total.
for i in range(5):
arrow = win.getMouse()
score = findScore(arrow)
print('Current Shot: {:}'.format(score))
total = total + score
print('Total: {:}'.format(total))
Thank you in advance to anyone who may be able to help.