Loop Body - The statement or statements that are repeated in a loop. In Python indention is used to show the statements that are part of the body of a loop.
Range - In Python, range(startValue, stopValue, step) is used to define a list of values that count from startValue to stopValue by step that includes the startValue but does not include the stopValue.