PYTHON_101 | WHILE & FOR LOOPS
SMARS Learning Platform
52% Complete
PYTHON_101 | WHILE & FOR LOOPS
Loop Type | Loop Type & Description |
---|---|
While | Repeats a statement or group of statements while a given condition is TRUE. It tests the condition before executing the loop body. |
For | Executes a sequence of statements multiple times and abbreviates the code that manages the loop variable. |
Nested Loops | You can use one or more loop inside any another while, for or do..while loop. |