range() · Nested Loops · break · Accumulators · Trace Tables
range(stop): 0 to stop-1; range(start,stop): start to stop-1; range(start,stop,step): with step+=break: exits the loop; continue: skips the rest of the current iteration and moves to the nexttotal = 0
for i in range(1, 5):
total += i
print(total)