Course Content
Python Indentation, Comments and Variables
0/2
Object Oriented Programming in Python
0/1
Exception Handling in Python
0/1
Sending emails with Python
0/1
Unit test in python programming
0/1
Python programming (zero to advance!!!)
About Lesson

In Python, `if`, `elif` (short for “else if”), and `else` are conditional statements used for decision-making in programs. They are part of the control flow structures that allow the execution of different blocks of code based on certain conditions.

Here’s a brief explanation of each:

1. `if` Statement:
– The `if` statement is used to execute a block of code if a specified condition is true.
– It consists of the `if` keyword followed by the condition to be evaluated and a colon (`:`) to indicate the beginning of the code block.
– If the condition evaluates to `True`, the code block associated with the `if` statement is executed.
– If the condition evaluates to `False`, the code block is skipped.
– Example:
“`python
x = 10
if x > 5:
print(“x is greater than 5”)
“`

2. `elif` Statement:
– The `elif` statement is used to check additional conditions if the condition(s) specified in the preceding `if` statement(s) are not true.
– It follows an `if` statement or another `elif` statement.
– It allows for the evaluation of multiple conditions in sequence.
– Example:
“`python
x = 10
if x > 10:
print(“x is greater than 10”)
elif x < 10:
print(“x is less than 10”)
else:
print(“x is equal to 10”)
“`

3. `else` Statement:
– The `else` statement is used to execute a block of code if none of the preceding conditions (`if` or `elif`) are true.
– It follows the `if` statement and/or multiple `elif` statements.
– It is optional and can only appear once in an `if` statement block.
– Example:
“`python
x = 10
if x > 10:
print(“x is greater than 10”)
elif x < 10:
print(“x is less than 10”)
else:
print(“x is equal to 10”)
“`

In summary, `if` statements are used to test a condition, `elif` statements are used to test additional conditions if the preceding conditions are not met, and `else` statements are used to execute code when none of the conditions are true. These statements provide flexibility in controlling the flow of execution in Python programs.

Below are illustrative examples demonstrating the use of `if`, `elif`, and `else` statements in Python:

### Example 1: Using `if` Statement

“`python
x = 10
if x > 5:
print(“x is greater than 5”)
“`
Output:
“`
x is greater than 5
“`

### Example 2: Using `if` and `else` Statements

“`python
x = 10
if x > 10:
print(“x is greater than 10”)
else:
print(“x is less than or equal to 10”)
“`
Output:
“`
x is less than or equal to 10
“`

### Example 3: Using `if`, `elif`, and `else` Statements

“`python
x = 10
if x > 10:
print(“x is greater than 10”)
elif x < 10:
print(“x is less than 10”)
else:
print(“x is equal to 10”)
“`
Output:
“`
x is equal to 10
“`

### Example 4: Nested `if` Statements

“`python
x = 10
if x > 5:
print(“x is greater than 5”)
if x == 10:
print(“x is equal to 10”)
else:
print(“x is less than or equal to 5”)
“`
Output:
“`
x is greater than 5
x is equal to 10
“`

These examples demonstrate how `if`, `elif`, and `else` statements can be used to conditionally execute blocks of code based on different conditions. They provide flexibility in controlling program flow based on the evaluation of logical expressions.

Join the conversation