Grade 7 Python For Loop
Grade 7 Python For Loop
With the for loop we can execute a set of statements, once for each item in a list, tuple, set etc.
Example 02:
The continue Statement
With the continue statement we can stop the current iteration of the loop, and continue with the next.
Example 01:
Example 02:
Nested Loops
A nested loop is a loop inside a loop.
The "inner loop" will be executed one time for each iteration of the "outer loop".
The End
Write a Program use a nested while loop to find the prime numbers from 2 to 100.
-The End-