Computer Science Related Others Courses AvailableThe Best Codder.blogspot.com
Posts

Python nested IF...ELIF...ELSE Statements

1 min read

 

Python IF...ELIF...ELSE Statements

There may be a situation when you want to check for another condition after a condition resolves to true. In such a situation, you can use the nested if construct.

In a nested if construct, you can have an if...elif...else construct inside another if...elif...else construct.

Syntax

The syntax of the nested if...elif...else construct may be −

if expression1:
   statement(s)
   if expression2:
      statement(s)
   elif expression3:
      statement(s)
   elif expression4:
      statement(s)
   else:
      statement(s)
else:
   statement(s)

Example

 Live Demo
#!/usr/bin/python

var = 100
if var < 200:
   print "Expression value is less than 200"
   if var == 150:
      print "Which is 150"
   elif var == 100:
      print "Which is 100"
   elif var == 50:
      print "Which is 50"
   elif var < 50:
      print "Expression value is less than 50"
else:
   print "Could not find true expression"

print "Good bye!"

When the above code is executed, it produces following result −

Expression value is less than 200
Which is 100
Good bye!

You may like these posts

  •  Python TuplesTuple is a collection of Python objects much like a list. The sequence of values stored in a tuple can be of any type, and they are indexed by integers.&nbs…
  •  Python StringPython does not have a character data type, a single character is simply a string with a length of 1. Square brackets can be used to access elements of the strin…
  •  Python ListsPython Lists are just like dynamically sized arrays, declared in other languages (vector in C++ and Array List in Java). In simple language, a list is a coll…

Post a Comment

© 2025Python . The Best Codder All rights reserved. Distributed by