From 5d0b7731384c2a2b2bf410bc90e542300f0a0ad3 Mon Sep 17 00:00:00 2001 From: Christian Kolset Date: Thu, 13 Feb 2025 19:25:10 -0700 Subject: renamed files to contain numbering --- tutorials/1_07_control_structures.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tutorials/1_07_control_structures.md (limited to 'tutorials/1_07_control_structures.md') 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 -- cgit v1.2.3