summaryrefslogtreecommitdiff
path: root/tutorials/1_07_control_structures.md
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2025-02-13 19:25:10 -0700
committerChristian Kolset <christian.kolset@gmail.com>2025-02-13 19:25:10 -0700
commit5d0b7731384c2a2b2bf410bc90e542300f0a0ad3 (patch)
tree59edcaa3918eb178164f58dc44c6160935c480e2 /tutorials/1_07_control_structures.md
parentc4e55bd19805d6a1ea9fbda8975a87e8d9747efa (diff)
renamed files to contain numbering
Diffstat (limited to 'tutorials/1_07_control_structures.md')
-rw-r--r--tutorials/1_07_control_structures.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/tutorials/1_07_control_structures.md b/tutorials/1_07_control_structures.md
new file mode 100644
index 0000000..245ef5a
--- /dev/null
+++ b/tutorials/1_07_control_structures.md
@@ -0,0 +1,10 @@
+# Control Structures
+Control structures allow us to control the flow of execution in a Python program. The two main types are **conditional statements (`if` statements)** and **loops (`for` and `while` loops)**.
+
+## Conditional statements
+Conditional statements let you execute code based on different conditions using if, elif and else statements.
+
+
+
+
+## Loops