Section 20.7 Chapter Summary
This chapter included the following concepts from computing.
- 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 fromstartValue
tostopValue
by step that includes thestartValue
but does not include thestopValue
.
You have attempted of activities on this page.