"""The syntax of a for-loop in Python.""" for loopVariable in sequence: loop body statement 1 # The loop body is executed for every item loop body statement 2 # in the sequence. # ... normal statement 1 # After the sequence is exhausted, the code after normal statement 2 # the for loop will be executed. # ...