For Loops

for iteration_variable in sequence:

Notice the keywords for and in. Additionally, the for loop statement must end in a colon.

All of the code to be repeated by the loop should be indented.

In a for loop, the iterator increments through the sequence of values. The sequence iterated through could be such things as a list of values or a string. You can also iterate through a sequence by index values.

Example:

for shape in shapes_list:

print(shape)