python course 2
Control Statements:
A control statement is a statement that determines the control flow of a set of instructions. It decides the
sequence in which the instructions in a program are to be executed. A control statement can either comprise of
one or more instructions.
The three fundamental methods of control flow in a programming language are
i) Sequential Control Statements
ii) Selection Control Statements
iii) Iterative Control Statements
i) Sequential Control Statements: The code of Python program is executed sequentially from the first
line of the program to its last line. That is, the second statement is executed after the first, the third statement
is executed after the second, so on and so forth. This method is known as sequential Control flow and these
statements called as sequential control statements.
ii) Selection Control Statements: Some cases, execute only a set of statements called as selection
control statements. This method is known as selection control flow.
...