Working with Python IF, ELSE and ELIF Statements

Channel: Linux
Abstract: statements elif ( condition )print "var1 is greatest" else print "var3 is greatest"elif ( var2 > var3 )

IF, ELSE or ELIF (known as else if in some programming) are conditional statements which are used for execution of different code depends on condition. The if statements can be written without else or elif statements, But else and elif can’t be used without else. In this tutorial, you will learn if, else and elif in Python programming language.

1. Python if Statement

The single if statement is used to execute the specific block of code if the condition evaluates to true. In the case of false output, nothing will execute.

Syntax:

if ( condition ): statements12if ( condition ):    statements

Example 1:

#!/usr/bin/python var = 101 if ( var ): print "true"12345#!/usr/bin/python var = 101if ( var ):    print "true"

Example 2:

#!/usr/bin/python var = 101 if ( var==101 ): print "true"12345#!/usr/bin/python var = 101if ( var==101 ):    print "true"

2. Python if-else Statement

The if and else statement is used to execute the specific block of code for true condition and another block of code on false condition.

Syntax:

if ( condition ): statements else: statements1234if ( condition ):    statementselse:    statements

Example: Assinged a value to var variable, Now test if the assigned value it greated than 100. As per below code the result will be 「Assigned value is greater than 100」.

#!/usr/bin/python var = 101 if ( var > 100 ): print "Assigned value is greater than 100" else: print "Assigned value is less than or equals to 100"12345678#!/usr/bin/python var = 101 if ( var > 100 ):    print "Assigned value is greater than 100"else:    print "Assigned value is less than or equals to 100"

3. Python if-elif Statement

The if and elif (known as else-if) statement is used to execute the specific block of codes with multiple conditions. In this, if the main if the condition goes false then another elif condition is checked. You can define a number of elif conditions as per your requirements.

Syntax:

if ( condition ): statements elif ( condition ): statements else: statements123456if ( condition ):    statementselif ( condition ):    statementselse:    statements

Example: Taken a avalue as input in total variable. Now compare the value with multiple levels and print the appropriate output.

#!/usr/bin/python total = 90 if ( total > 500 ): print "total is greater than 500" elif ( total > 100 ): print "total is greater than 100" elif ( total > 50 ): print "total is greater than 50" else: print "total is less than or equal to 50"123456789101112#!/usr/bin/python total = 90 if ( total > 500 ):    print "total is greater than 500"elif ( total > 100 ):    print "total is greater than 100"elif ( total > 50 ):    print "total is greater than 50"else:    print "total is less than or equal to 50"

4. Python Nested if Statement

The nested if statements is use as if inside if. In this if any if condition evalutes to true then it goes to inner if condition.

Syntax:

if ( condition ): if ( condition ): statements else: statements12345if ( condition ):    if ( condition ):        statements    else:        statements

Example: taken 3 numeric inputs and find the greatest value. Like if var1 is greater than var2 then it check if var1 is also greater than var3.

#!/usr/bin/python var1 = 100 var2 = 350 var3 = 80 if ( var1 > var2 ): if ( var1 > var3 ): print "var1 is greatest" else print "var3 is greatest" elif ( var2 > var3 ): print "var2 is greatest" else: print "var3 is greatest"123456789101112131415#!/usr/bin/python var1 = 100var2 = 350var3 = 80 if ( var1 > var2 ):    if ( var1 > var3 ):        print "var1 is greatest"    else        print "var3 is greatest"elif ( var2 > var3 ):    print "var2 is greatest"else:    print "var3 is greatest"

Ref From: tecadmin
Channels: Pythonifelse

Related articles