pytutorial/python_basics/flow_control_overview
David Rotermund 9f95b8debb
Update README.md
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
2023-12-06 23:51:16 +01:00
..
README.md Update README.md 2023-12-06 23:51:16 +01:00

Flow Control Overview

{:.no_toc}

* TOC {:toc}

The goal

Let us look what kind of options we have for flow control in Python.

Questions to David Rotermund

Logic blocks need to be indented. Preferable with 4 spaces!

There is called a so called The Python Language Reference

Selection statements
if, elif, else
match case (>= Python 3.10)
Iteration statements (Loops)
for loop
while loop
Functions
functions
return
lambda
Jump statements
break
continue
pass
Error handling
try