Nested if-else statement

In Python, the nested  if-else statement is an if statement inside another if-else statement. It is allowed in Python to put any number of if statements in another if statement.

Indentation is the only way to differentiate the level of nesting. The nested if-else is useful when we want to make a series of decisions.

Syntax of the nested if-else:

if condition_outer:
    if condition_inner:
        statement of inner if
    else:
        statement of inner else:
    statement of outer if
else:
    outer else
statement outside if block
            

To find a greater number between two numbers

Example: 

num1 = int(input("Enter first number"))
num2 = int(input("Enter second number"))

if num1 > num2:
    if num1 == num2:
        print(num1, "and", num2, "are equal")
    else:
        print(num1, "is greater than", num2)
else:
    print(num1, "is smaller than", num2)

Output1:

Input1: Enter first number 2

Input2: Enter second number 1

Output: 2 is greater than 1

Output2:

Input1: Enter first number 1

Input2: Enter second number 2

Output: 1 is smaller than 2

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值