summaryrefslogtreecommitdiff
path: root/tutorials/1_07_control_structures.md
diff options
context:
space:
mode:
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.