0% found this document useful (0 votes)
28 views3 pages

Python Decision Making Statements

The document outlines the types of decision-making statements in Python, including if statements, if...else statements, and nested if statements. It explains how these statements evaluate boolean expressions to determine which block of code to execute. Additionally, it provides examples to illustrate the use of these decision-making structures in Python programming.

Uploaded by

rvijistephen
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views3 pages

Python Decision Making Statements

The document outlines the types of decision-making statements in Python, including if statements, if...else statements, and nested if statements. It explains how these statements evaluate boolean expressions to determine which block of code to execute. Additionally, it provides examples to illustrate the use of these decision-making structures in Python programming.

Uploaded by

rvijistephen
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Home Whiteboard AI Assistant Online Compilers Jobs Tools Articles Types of Decision Making Statements in Python

Python programming language provides following types of decision making


Chapters Categories
statements. Click the following links to check their detail.

SQL HTML CSS Javascript Python Java C C++ PHP Scala


[Link]. Statement & Description

if statements
Python - Decision Making 1 An if statement consists of a boolean expression followed by one or more
statements.

if...else statements
2 An if statement can be followed by an optional else statement, which
executes when the boolean expression is FALSE.
Python's decision making functionality is in its keywords − if..elif...else. The if
keyword requires a boolean expression, followed by colon (:) symbol. The colon (:) nested if statements
symbol starts an indented block. The statements with the same level of indentation 3 You can use one if or else if statement inside another if or else if
are executed if the boolean expression in if statement is True. If the expression is statement(s).
not True (False), the interpreter bypasses the indented block and proceeds to execute
statements at earlier indentation level. Let us go through each decision making briefly −

Decision structures evaluate multiple expressions which produce TRUE or FALSE as


outcome. You need to determine which action to take and which statements to
Single Statement Suites
execute if outcome is TRUE or FALSE otherwise.
If the suite of an if clause consists only of a single line, it may go on the same line as

Following is the general form of a typical decision making structure found in most of the header statement.
the programming languages −
Example

Here is an example of a one-line if clause −

Open Compiler

var = 100
if ( var == 100 ) : print ("Value of expression is 100")
print ("Good bye!")

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

Value of expression is 100


Good bye!
Python programming language assumes any non-zero and non-null values as TRUE,
and if it is either zero or null, then it is assumed as FALSE value.
print("The number is even")
if...else statement else:

In this decision making statement, if the if condition is true, then the statements print("The given number is odd")
elif var == 0:
within this block are executed, otherwise, the else block is executed.
print("The given number is zero")
The program will choose which block of code to execute based on whether the else:
condition in the if statement is true or false. print("The given number is negative")

Example On executing the above code, it will display the below output −

The following example shows the use of if...else statement.


The number is equal to 100
The number is even
Open Compiler

var = 100
if ( var == 100 ):
print ("Value of var is equal to 100") TOP TUTORIALS
else: Python Tutorial
print("Value of var is not equal to 100")
Java Tutorial

C++ Tutorial
On running the above code, it will show the following output − C Programming Tutorial

C# Tutorial
Value of var is equal to 100 PHP Tutorial
R Tutorial

HTML Tutorial
Nested if statements
CSS Tutorial
A nested if is another decision making statement in which one if statement resides
JavaScript Tutorial
inside another. It allows us to check multiple conditions sequentially.
SQL Tutorial

Example

In this example, we will see the use of nested-if statement.

Open Compiler

var = 100
if ( var == 100 ):
print("The number is equal to 100")
if var % 2 == 0:
TRENDING TECHNOLOGIES COMPILERS & EDITORS

Cloud Computing Tutorial Online Java Compiler

Amazon Web Services Tutorial Online Python Compiler


Microsoft Azure Tutorial Online Go Compiler

Git Tutorial Online C Compiler

Ethical Hacking Tutorial Online C++ Compiler


Docker Tutorial Online C# Compiler
Kubernetes Tutorial Online PHP Compiler

DSA Tutorial Online MATLAB Compiler

Spring Boot Tutorial Online Bash Compiler


SDLC Tutorial Online SQL Compiler

Unix Tutorial Online Html Editor

CERTIFICATIONS ABOUT US | OUR TEAM | CAREERS | JOBS | CONTACT US | TERMS OF USE |

Business Analytics Certification PRIVACY POLICY | REFUND POLICY | COOKIES POLICY | FAQ'S
Java & Spring Boot Advanced Certification

Data Science Advanced Certification


Cloud Computing And DevOps

Advanced Certification In Business Analytics


Artificial Intelligence And Machine Learning

DevOps Certification
Game Development Certification
Front-End Developer Certification

AWS Certification Training


Python Programming Certification

Tutorials Point is a leading Ed Tech company striving to provide the best learning material
on technical and non-technical subjects.

© Copyright 2025. All Rights Reserved.

You might also like