7.5. There’s a Pattern Here!

There’s a pattern in these programs, a pattern that is common when processing data. We call this the Accumulator Pattern. In the first program above, we accumulated the values into the variable sum. In the last few programs, we accumulated a product into the variable product.

Here are the five steps in this pattern.

  1. Set the accumulator variable to its initial value. This is the value we want if there is no data to be processed.

  2. Get all the data to be processed.

  3. Step through all the data using a for loop so that the variable takes on each value in the data.

  4. Combine each piece of the data into the accumulator.

  5. Do something with the result.

7.6. Using the Accumulator Pattern

What is the sum of all the numbers between 1 and 100? We can answer that easily using our pattern.

The range function has one more version that we can use here. By providing three input numbers, we can specify the start value, the ending value (which is one more than the last value), and the step – how much to change between numbers.

Now let’s answer a slightly harder question: What is the sum of all the even numbers between 0 and 100? It’s easy with our pattern.

How do we know what’s really going on in this program? How do we know that number is taking on all of the even values from 0 to 100? One way we can tell is by using a CodeLens on a smaller problem from 0 to 20. We can step through the program line-by-line, or race to the end by clicking the Last button and then step backwards.

Activity: CodeLens 7.6.6 (Numbers_Sum_Step)

The following is the correct code for printing the sum of all the odd numbers from 1 to 100 using the accumulator pattern, but it is mixed up. Drag the blocks from the left and put them in the correct order on the right. <b>Remember that the statements in the body of a loop must be indented!</b> To indent a block drag it further right. Click the <i>Check Me</i> button to check your solution.</p>

The following is the correct code for printing the sum of all the even numbers from 50 to 100 using the accumulator pattern, but it is mixed up and <b>contains one extra block</b>. Drag the required blocks from the left and put them in the correct order on the right. Don’t forget to indent blocks in the body of the loop. Just drag the block further right to indent. Click the <i>Check Me</i> button to check your solution.</p>

Note

Discuss topics in this section with classmates.

Show Comments
You have attempted of activities on this page