diff options
Diffstat (limited to 'tutorials/module_1/control_structures.md')
| -rw-r--r-- | tutorials/module_1/control_structures.md | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tutorials/module_1/control_structures.md b/tutorials/module_1/control_structures.md index 15e97eb..f71bd7e 100644 --- a/tutorials/module_1/control_structures.md +++ b/tutorials/module_1/control_structures.md @@ -57,7 +57,6 @@ if 0 <= score <= 100: ``` ---- ## Loops in Python @@ -102,8 +101,6 @@ while i < 6: i += 1 ``` ---- - ## Loop Control Statements Python provides special statements to control the behavior of loops. These can be used to break out of a loop, skip certain iterations, or simply include a placeholder for future code. |
