Control Flow

Control flow in Python refers to the order in which individual statements, instructions, or function calls are executed or evaluated in a program.
Python provides several control flow tools to change this default linear execution:

The first Control Flow tool we will be learning are Conditional Statements

Next