summaryrefslogtreecommitdiff
path: root/tutorials/1_07_control_structures.md
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2025-03-12 20:47:04 -0600
committerChristian Kolset <christian.kolset@gmail.com>2025-03-12 20:47:04 -0600
commitab0dbb368948becb5beda50a585f9620bc186662 (patch)
treedb0102a76c74abb4e0cd3a933dbda28e04f9cd6e /tutorials/1_07_control_structures.md
parentf404748a1085af0dabae487f8fedcad20a238d0c (diff)
Completed Functions anr Arrays tutorial
Diffstat (limited to 'tutorials/1_07_control_structures.md')
-rw-r--r--tutorials/1_07_control_structures.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/tutorials/1_07_control_structures.md b/tutorials/1_07_control_structures.md
index 245ef5a..21826bb 100644
--- a/tutorials/1_07_control_structures.md
+++ b/tutorials/1_07_control_structures.md
@@ -1,6 +1,9 @@
# 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)**.
+## Flowcharts
+
+
## Conditional statements
Conditional statements let you execute code based on different conditions using if, elif and else statements.