A list is a sequence of items, and in a later chapter, you will learn all about various ways to create, build and edit lists. For now, letβs focus on using lists. A list traversal uses a for loop to iterate over each item in the list automatically. Consider this example:
Subsection4.7.2Using the range Function to Generate a Sequence to Iterate Over
We are now in a position to understand the inner workings we glossed over previously when we first introduced repeated execution with a for loop. Here was the example:
The range function takes an integer n as input and returns a sequence of numbers, starting at 0 and going up to but not including n. Thus, instead of range(3), we could have written [0, 1, 2].
The loop variable _ is bound to 0 the first time lines 4 and 5 execute. The next time, _ is bound to 1. Third time, it is bound to 2. _ is a strange name for a variable but if you look carefully at the rules about variable names, it is a legal name. By convention, we use the _ as our loop variable when we donβt intend to ever refer to the loop variable. That is, we are just trying to repeat the code block some number of times (once for each item in a sequence), but we are not going to do anything with the particular items. _ will be bound to a different item each time, but we wonβt ever refer to those particular items in the code.
By contrast, notice that in the previous activecode window, the loop variable is fruit. In that for loop, we do refer to each item, with print(fruit). When we are going to refer to the items and do something with them, it is important to use a loop variable name that is descriptive, such as fruit.
To draw a square weβd like to do the same thing four times β move the turtle forward some distance and turn 90 degrees. We previously used 8 lines of Python code to have a turtle draw the four sides of a square. This next program does exactly the same thing but, with the help of the for statement, it uses just three lines (not including the setup code). Remember that the for statement will repeat the forward and left four times, one time for each value in the list.
While βsaving some lines of codeβ might be convenient, it is not the big deal here. What is much more important is that weβve found a βrepeating patternβ of statements, and we reorganized our program to repeat the pattern.
The values [0,1,2,3] were provided to make the loop body execute 4 times. We could have used any four values. For example, consider the following program.
In the previous example, there were four integers in the list. This time there are four strings. Since there are four items in the list, the iteration will still occur four times. aColor will take on each color in the list. We can even take this one step further and use the value of aColor as part of the computation.
The for-loop is our first example of a compound statement. Syntactically a compound statement is a statement. The level of indentation of a (whole) compound statement is the indentation of its heading. In the example above there are five statements with the same indentation, executed sequentially: the import, 2 assignments, the whole for-loop, and wn.exitonclick(). The for-loop compound statement is executed completely before going on to the next sequential statement, wn.exitonclick().
Iteration by item will process once for each item in the sequence. Each string is viewed as a single item, even if you are able to iterate over a string itself.
Error, the for statement needs to use the range function.
The question is not asking you to describe the outcome of the entire loop, the question is asking you about the outcome of a **single iteration** of the loop.
Draw a square using a different color for each side.
The body of the loop only draws one side of the square. It will be repeated once for each item in the list. However, the color of the turtle never changes.