summaryrefslogtreecommitdiff
path: root/tutorials/module_1/control_structures.md
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2025-04-24 17:39:37 -0600
committerChristian Kolset <christian.kolset@gmail.com>2025-04-24 17:39:37 -0600
commit2d2b7b9f5731dc5c7bda29c917a6cc5f17b5160e (patch)
treeb566dc6e44f9e63abc94a18f6697010ea981ab89 /tutorials/module_1/control_structures.md
parente53c35223bed9a32f1e9cd3fe75caf344d4b5c7e (diff)
Updated markdown formatting for latex conversion.
Diffstat (limited to 'tutorials/module_1/control_structures.md')
-rw-r--r--tutorials/module_1/control_structures.md3
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.