Iteration statements are control statements which
repeat other statements.
t = 0
for n in [ 2, 5, 8 ]:
t = t + n*n
In the above, the for loop causes the (second) assignment
statement to be performed three times, increasing t three times.
The effect is to compute 22 + 52 + 82 and leave that
value in t.