Flow Control

Flow Control

Flow control describes the order in which statements will be executed at runtime. The control flow of a Python program is regulated by conditional (decision making) statements, loops (iterative), and Branching statements.

In this tutorial, we will learn about different control flow statements available in Python programming language with examples. Below are the list of control flow statements that we will be discussing here.

Decision-making statements : if, if-else, if-elif-else

Looping statements : for, while

Branching statements : break, continue

Flow Control
Scroll to top