Flow Control
In this tutorial you will learn: Python if, elif and else Statement Python for Loop Python while Loop Python break and continue Statement 1 Python if, elif and else Statement: These statements are used when we want to make some decisions in our program to run some codes for a specific condition. The if statement will first take a test expression and will run the code only if the result of the test expression is True. »