iteration
repeated execution of a set of statements
while loop
it tests whether a condition is True, if it is True then it executes the block of code associated
for loops
it works with any iterable object
range() function
range(start (inclusive), end (exclusive), step)