Python Tutorial: 3. Flow Control
In the previous tutorial, we demonstrated the while statement, which is a “flow control” statement. In computer programming, control flow or flow of control is the order function calls, instructions, and statements are executed or evaluated when a program is running. In Python (as in most other programming languages,) there are more usual flow control statements than just while. 1 if Statements The most well-known flow control statement probably is...