Python if, elif, and else
Write conditional logic with comparisons, nested conditions, guard clauses, and clear branches.
Python match Statements
Use structural pattern matching for clean multi-branch decisions in Python 3.10+.
Python while Loops
Repeat work while a condition remains true and avoid infinite loops.
Python for Loops
Loop through collections, dictionaries, strings, files, and generated values.
Python range
Generate integer sequences for loops, indexes, batching, and controlled repetition.