/Lesson-3-Loops-Conditional-Statements

Python lesson 3: Definite loops and conditional statements

MIT LicenseMIT

Lesson 3: Control flow

Control flow is the term used to refer to how the execution of different parts of a computer program is determined. In this lesson we will look at two main types of control flow concepts: (1) Loops, which are used to repeat execution of parts of a program, and (2) conditional statements, which use basic logical tests to determine which parts of a program will be run.

Lesson overview

  1. Definite loops
  2. Conditional statements
  3. Exercise 3: for loops and conditional statements

Resources