The continue keyword
The continue keyword is another reserved keyword that is used heavily in loops, exactly like break.
Continue acts like 'skip' of this iteration part of the loop. Any time the interpreter finds this word inside the body loop automatically skips the part that is below and goes to the condition on top and executes the next step (or iteration) of the loop
L-6. In the container example the containers with number between 150-159 were broken, so they should have not been included at the first place. Fix this by adding the continue statement to your current code.