Javatpoint Logo
Javatpoint Logo

Conditional Expressions in Python

Python's conditional statements carry out various calculations or operations according to whether a particular Boolean condition is evaluated as true or false. In Python, IF statements deal with conditional statements.

We'll learn how to use conditional statements in Python in this tutorial.

What is Python If Statement?

To make decisions, utilize the if statement in Python. It has a body of instructions that only executes whenever the if statement's condition is met. The additional else statement, which includes some instructions for the else statement, runs if the if condition is false.

Python's if-else statement is used when you wish to satisfy one statement while the other is false.

Python Syntax of the if Statement:

Code

Output:

a is greater than b

How to Use the else Condition?

The "else condition" is usually used when judging one statement based on another. If the condition mentioned in the if code block is wrong, then the interpreter will execute the else code block.

Code

Output:

a is greater than b

When the else Statement does not Work

There could be a lot of situations where your "otherwise condition" doesn't produce the desired outcome. Due to a flaw in the program's logic, it will print the incorrect result. This typically occurs when there are more than two statements or conditions in a program.

An illustration will make this notion easier for you to grasp.

Since both variables, in this case, are identical (9, 9), the program's output that "x is greater than y" is FALSE. This is because it evaluates the first condition, or the if expression in Python, then prints the next condition (the else statement) by default if the first condition fails. The following step will examine how to fix this mistake.

Code

Output:

a is greater than b

How to use the elif Condition?

We can employ the "elif" clause to fix the issue caused by the "else condition" made earlier. You can instruct the software to print the third condition or alternative when the first two conditions fail or are erroneous by using the "elif" condition.

Code

Output:

a is equal to b

Python Nested if Statement

The following example demonstrates nested if Statement Python

Code

Output:

C is the largest number






Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA