In Programming, the sequence of execution of the code (instructions) known as program control flow follows one of the following in different sections of your code.
Sequential Flow: In this control flow lines of codes are executed sequentially according to the line numbers
Decision Making (If...Else, switch case): Here the program takes a decision based on some implemented logic using a Boolean value (true or false) decision making is also called branching
Repetition (Looping, Iteration): In this program control flow, a code block will continue to repeat a given action so long as a given condition remains true.
Explanation: Python is mostly interpreted and python code is written in . py file is first compiled to what is called bytecode which is stored with a . pyc