def main(): sum = 0 for i in range(5,25,5): print "The current value of i is:", i sum += i print "The sum of the iterator values is: ", sum main()