Python Control Flow Statements

In this article, you will understand Control Flow Statements and their types (Conditional, Iterative, and Transfer statements). Also, you will comprehend how to utilize Break, Continue and Pass statements in Python.


What is Python Control Flow Statement?

Control flow refers to the sequence in which a program’s code is executed. Python offers three different control structures, and conditions, loops, and function calls all influence how a Python program is controlled.


Types of Python control flow structures

  • Python Conditional statements.
  • Python Iterative statements.
  • Python Transfer statements.

In the next lesson, you will learn in detail about Conditional statements and their usage.