Loading...
Hello.
My name is Mrs. Holborow and welcome to Computing.
I'm so pleased you've decided to join me for the lesson today.
We are going to be exploring how we can use count-controlled iteration to iterate through a list and inspect each item.
Welcome to today's lesson from the Unit: Python programming with sequences of data.
This lesson is called Using for loops to iterate data structures.
And by the end of today's lesson, you'll be able to use a for loop to inspect every element of a list.
It would be useful if you had access to a device that you can create and amend code on for this lesson.
Shall we make a start? We will be exploring these keywords throughout today's lesson.
Iteration.
Iteration, the process of repeating a sequence of instructions within a programme loop.
For loop.
For loop, a count-controlled loop used to repeat a specific block of code a known number of times.
Today's lesson is split into two sections.
We'll start by explaining the differences between while and for loops, and then we'll move on to use a for loop to inspect each item in a list.
Let's make a start by explaining the differences between while and for loops.
There are two main types of iteration used in programming.
In condition-controlled iteration, instructions are repeatedly executed until a condition is met.
In count-controlled iteration instructions are repeatedly executed a set number of times.
Let's think about the example.
If a coach asks you to do press-ups, what instructions could they give you that would be an example of count-controlled iteration? What instructions could they give you that would be an example of condition-controlled iteration? Maybe pause your video whilst you have a think.
Ah, Sam and Jun have got some excellent examples.
Sam says, "An example for count-controlled iteration could be 'Do 20 press-ups'" Doing a set number of times.
Jun says, "An example for condition-controlled iteration could be 'Do press-ups until the alarm goes off.
'" So doing something until a condition is met.
For loops are count-controlled, meaning that you specify the number of times that you wish the instructions to be repeated.
In Python, the range function can be used to specify the number of times that a for loop should iterate.
So here's some example of code.
On line one, I have the statement "for count in range." And then I open my brackets and I have the value 1, 6 and then I close my brackets.
I have a colon, and then on line two, I have the indented block of code which is going to run, which is going to print the variable held in count.
Here, the number one represents the starting value.
And the number six represents the stopping value.
If you only provide one argument, which will be for the stopping value, the starting value will be zero by default.
So you can see here the line one code has been altered and this time it says for count in range six in brackets.
So this will automatically start at zero and the stopping value will be six.
Sam says, "When I run the code, it does not display the value six, it stops at five." Let's have a look at the output from Sam's programme.
Can you explain why this is happening? The stopping value of the range function is exclusive.
This means that the final value of the count will be up to but will not include the stopping value.
So six will not be printed.
In Python, while loops are used to implement condition-controlled iteration and for loops are used to implement count-controlled iteration.
Here, we have two examples of code which are doing the same thing but in a slightly different way.
The left-hand side uses condition-controlled iteration.
So on line four, I have a while loop which says while new is not equal to no, and then it's going to run the block of code within the while loop.
So asking the user to pick an instrument, storing that instrument has input, appending that instrument to the list called band, and then printing "Pick another?" and asking them to input it again.
On the right-hand side, the code uses count-controlled iteration.
So on line three, we have a for loop which says for x in range four.
It then has the of code.
So we have print "Pick an instrument," we have the input assigned to the variable instrument, and then we are adding the instrument to the list band.
The while loop will continue while the user does not answer no, whereas the for loop will run for four times.
X starts from zero and increments by one as default and then stops before a specified number, which in this case is four.
This is the example output from the two programmes.
So on the left-and side we have the condition-controlled loop.
You can see that the users ask to pick an instrument and they respond with piano.
Pick another? Yes.
They say drums. Pick another, they say no.
And then the loop ends and the list is printed.
So the list contains piano followed by drums. On the right-hand side, we have the count-controlled example.
So the user picks an instrument, drums. Picks an instrument again, piano.
Picks an instrument again, guitar.
Picks an instrument again, saxophone.
And then the loop ends.
The list contains four items. Drums, piano, guitar, and saxophone.
Time to check your understanding.
What is this code an example of? Is it A, condition-controlled iteration? Or B, count-controlled iteration? Pause the video whilst you have a think.
Did you select B? Count-controlled iteration? Well done.
Remember, a for loop is used to implement count-controlled iteration in Python.
What do you think will be displayed when this programme is run? Maybe pause the video whilst you have a look at the code and have a think.
Jun says, "It will display each item in the list.
So one, four, three and six." That's correct, Jun, well done.
What do you think will be displayed when this programme is run? Again, maybe pause the video whilst you have a look at the code.
Sam says, "The count variable is initialised to zero and is incremented by one for each item in the list.
So it all display four." Well done, Sam.
Time to check your understanding.
What will be displayed when this programme is run? A, four.
B, three followed by six.
Or C, two.
Pause the video whilst you have a think.
Did you select C? Well done.
Two is the correct answer.
Let's have a look at why that's the case.
The count variable is initialised to zero and is incremented by one each time the item in the list is greater than three.
So if we have a look at each item in the list, the first item one is not greater than three, so count will not be incremented.
Four is greater than three, so it will be incremented.
Three is not greater than three, so it won't be incremented.
And six is, so it will be incremented.
So that's two times.
Okay, you're doing a fantastic job in today's lesson so far, so well done for your hard work.
We are moving on to the first set of tasks of today's lesson.
So for task A part one.
I'd like you to explain the difference between condition-controlled and count-controlled iteration.
For part two, a programme contains a list of colours and you want it to display each colour held in the list.
Explain what type of loop you would use and why.
Pause the video whilst you answer the questions.
How did you get on? You're doing a great job, so well done.
Let's share some sample answers together.
So for part one, you were asked to explain the difference between condition-controlled and count-controlled iteration.
Condition-controlled iteration will run until a condition is met.
For example, until the flag is not true.
Count-controlled iteration will run a set number of times.
For part two, you were given a scenario.
A programme contains a list of colours and you want to display each colour held in the list.
Explain what type of loop you would use and why.
I would use a for loop.
This is because the for loop could be set to run the same number of times as the length of the number of items in the list.
The programme would iterate through each item in the list and display the colour from the list each time the loop is executed.
Okay, we are moving on to the second part of the lesson now.
We are going to use a for loop to inspect each item in a list.
A for loop can be used to iterate through a list and inspect each item.
This list holds the name of capital cities.
The for loop iterates through the list and increments the variable count each time a city in the list starts with the character L.
So you can see on line eight, we have a for loop which says, for city in cities.
And then we have an indented if statement which says, if city zero, so the first character in the city is equal to L, then we are going to increment the count variable by one.
Time to check your understanding.
What code would you add to line nine to check if each city in the list starts with a B? Is it A, B, or C? Pause the video whilst you have a think.
That's right.
B is correct.
City position zero is double equal to B.
Notice that this is case sensitive, so we need to make sure if we've used capital letters in our list, then we use capital letters in our search too.
The cities are stored in title case, so the if statement needs to check for a capital B.
Each individual element can also be inspected using string methods.
Here, the example code uses a for loop that iterates through the list and increments the variable count each time a city in the list has more than six characters.
So you can see we're using the len function here.
Time to check your understanding.
What would be the value of count after this programme is executed? Is it A, two.
B, four.
Or C, zero.
Pause the video whilst you have a think.
That's right.
The correct answer is A, two.
This is because the if statement is checking that the length of the city is greater than six and the city position zero, so the first letter in the city is equal to L.
There are only two cities that start with L and have more than six characters.
So far, you have iterated over lists that contains strings, but the process is exactly the same for a list that contains numbers.
So here I've got a list called ages, which contains the numbers 12, 11, 13, 15, 12, 14, 13, and 11.
The for loop iterates through the list and increments the variable count each time an age is greater than or equal to 12.
What would the value of count be after the programme is run? Maybe pause the video here and have a think.
That's right.
Count would be equal to six.
There are six ages in the list that are either equal to or greater than 12.
Okay, we are moving on to our final set of tasks for today's lesson and you're doing a fantastic job so far so well done.
A weather station in Heathrow has been monitoring rainfall in millimetres since 1948.
Open the starter file oak.
link/rainfall.
The file loads rainfall data from a text file and prints all the entries.
Remove the print statement on line five, then amend the code to add a count variable and increment the count variable each time the rainfall is greater than 65 millimetres.
For part three, display the number of times the rainfall is greater than 65 millimetres.
Don't worry too much about how the data is read in from the text file.
You don't need to know how that code works for this activity.
How did you get on? Great work.
If you want to see a full working solution, you can go to oak.
link/rainfall-solution.
You can see here on line four, I have a for loop which says for value in rainfall_data.
And then on line five I have an if statement which says, if value is greater than 65, I'm going to increment the count variable by one.
On line eight, I have a print statement which prints out the number of times the rainfall exceeds 65 millimetres.
Remember, if you need to make any corrections, you can always pause your video and go back a few slides.
For part four, I'd like you to open the starter file, oak.
link/rainfall-insights.
The starter file contains two variables, one called max_rainfall, which is currently set to zero.
And one called min_rainfall, which is currently set to a 100.
For part A, add a for loop to iterate the list of rainfall measurements.
For part B, if the rainfall is higher than the current amount held by max_rainfall, then the max_rainfall measurement should be replaced with the current list item.
For part C, if the rainfall is lower than the current amount held by min_rainfall, then the min_rainfall measurement should be replaced with the current list item.
And then finally, for part D.
At the end of the programme, display the max_rainfall and min_rainfall amounts to the user.
Pause the video whilst you complete the activity.
How did you get on? Great work.
So again, you can see a full working solution at oak.
link/rainfall-insights-solution.
So on line five, I have my for loop, which says for value in rainfall_data.
On line six I have an if statement which says, if value is greater than max_rainfall, then the max_rainfall is going to become equal to the value.
On line eight, I have an elif statement which says, if the value is less than min_rainfall then min_rainfall is going to become equal to the value.
On lines 11 and 12, I'm printing out the values of max and min_rainfall.
Again, if you need to make any corrections to your code, you can pause the video and do that now.
We've come to the end of today's lesson and you've done a fantastic job, so well done.
Let's summarise what we've learned together.
Count-controlled iteration is implemented using for loops in Python.
The range function can be used with a for loop to specify the number of times that a for loop should iterate.
For loops can be used to iterate through each item held in a list to inspect each item in turn.
I hope you've enjoyed today's lesson and I hope to see you again soon.
Bye.