Categories: If statementPython

Nested if statements in Python language

Nested if statements in Python language

In this tutorial, we will discuss the Nested if statements in Python language.

Nested if” can check a condition using if statements one after another if the condition resolves to be true.
We can have one if … elif… else statements inside another if …. else statement. This is known as nested if in python language

Syntex

Syntax

Flow diagram

 

Flow diagram nested if

Programs

Program 1

Program – Nested if in python

When we executed the above program, it produced the following result

your age and GPA both are enough

Explanation
In the above program, first, the program checks outer if condition
If it is False, goes to else part statements
If it is True, body of outer if statements are executed and control moves to inner if
At the same time, skips outer else part statements
then the program checks inner if
If it is false executes its elae part statements
If it is True executes inner if statements and skips inner else statements
Program 2
Example program

When we executed the above program, it produced the following result

Output 1
Enter a number..5

number is positive

Output 2
Enter a number..-5

number is negative

Output 3
Enter a number..0

number is zero

 

Explanation

In the above program, when the given number is positive

printed “number is positive”

when the given number is Negative

printed “number is negative”

when the given number equal to zero

printed “number is zero”

 

Related post
Karmehavannan

Recent Posts

Subtract two numbers using method overriding

Subtract two numbers using method overriding   Program 1

3 months ago

PHP Star triangle Pattern program

PHP Star triangle Pattern program Here's a simple Java program that demonstrates how to print…

3 months ago

Using function or method to Write temperature conversion : Fahrenheit into Celsius

Using Function or Method to Write to temperature conversion: Fahrenheit into Celsius In this article,…

1 year ago

Function or method:temperature conversion from Fahrenheit into Celsius – Entered by user

Function or method of temperature conversion from Fahrenheit into Celsius In this article, we will…

1 year ago

Write temperature conversion program: Fahrenheit into Celsius

Write temperature conversion program: from Fahrenheit to Celsius In this article, we will discuss the…

1 year ago

How to write a program to convert Fahrenheit into Celsius

How to write a program to convert Fahrenheit into Celsius In this article, we will…

1 year ago

This website uses cookies.