Control Statements When we write a simple program, generally it executes line by line and this execution are called sequential execution. This type of execution is suitable only for developing simple programs. It is not suitable for developing complex programs. To develop a program which contains complex logic. Then we need to execute statements according to our requirement for this we uses Control statements in which we can control the statements according to our need. ➠ There are types of control statements in Python:- a) If... statements b) If... else.. Statements c) If...elif....else.. Statements d) While loop e) For loop f) Nested loop g) Else suit h) Continue statements i) Break statements j) Pass statements k) Assert statements l) Return statements ↷If... statements Syntax:- if condition: Statements Here, at first...