Control statements:
- Statement is a line of code.
- Program is a set of statements.
- Statements execute either sequential or random.
- Sequential execution from top to bottom in the program.
- Control statements execute randomly and repeatedly depend on specified conditions.
| Conditional | Loop | Branching |
| if – block | while loop | break |
| if – else | for loop | continue |
| if – elif – else | nested Loop | pass |
| nested – if | return |