Blog_Banner_Asset
    Homebreadcumb forward arrow iconBlogbreadcumb forward arrow iconData Sciencebreadcumb forward arrow iconConditional Statements in Python: If, If else, Elif, Nested if Statements

Conditional Statements in Python: If, If else, Elif, Nested if Statements

Last updated:
21st Nov, 2022
Views
Read Time
8 Mins
share image icon
In this article
Chevron in toc
View All
Conditional Statements in Python: If, If else, Elif, Nested if Statements

We tend to make a lot of decisions in our life whether it is related to work or personal life. We usually make decisions based on few conditions, like I will buy a car if I get an increment next year.

Conditions are very important to everyone’s life to have a pleasant experience in our career or lifestyle. Similarly, In Programming languages also conditions play a pivotal role. They are the ones that help us develop a code that can satisfy all the business conditions and perform well.

Usually in Python Programming Language code executes in a sequential manner like the first line will be executed first followed by second line and so on until the end of the code. Conditional statements come into picture when we must decide that a certain part of code should run only if the condition is True. For instance, the If condition in Python executes both the true and false parts of any statement.

In this article we will have a look into the different types of conditional statements that are present in Python Programming Language along with the Syntax of each statement, code and output examples. Apart from Python If else, and Python If statement, this list will also highlight what is a Python ternary operator. 

What is a Python Ternary Operator?

Also referred to as conditional expressions, a python ternary operator is responsible for evaluating something based on a condition, whether it is true or false. This particular feature was added to the 2.5 version of Python. It enables testing a condition in a single line, thus making your code simpler, which is contrary to the multi-line technique. One of the major concerns for every python programmer is the readability and size of their codes. In order to maintain an efficient program in Python, you need to keep your code short, clean and easily readable. This is where the python ternary operator comes into play. They not only help you to maintain single-line expressions, thus making your code easier to read and compact, but also increases the readability of your code by significantly reducing the number of lines of the same. There are mainly three operands in a ternary operator, namely, 

  • Condition
  • True_val
  • False_val

What are conditional statements in Python?

As the name suggests, conditional statements are responsible for handling different conditions in your programs such as If condition in Python. They are present in every programming language, including Python. These statements help your program by forming decisions based on the conditions encountered by the same. Typically, there are three types of conditional statements, namely,

  • Python If Statement
  • Python If Else statement and
  • If-elif-else statements

If Statement

If statement is used when we must execute a code block only if a given test condition is True. First the program will evaluate the test conditional expression and will only execute the code block if the test conditional expression is True. IF statement is written by using the if keyword.

Syntax

If test condition expression:

         Statement 1

         Statement 2…….

Example

# Example for IF Statement

# When Condition is True

number = 6

if number > 0:

         print (number,”Positive Number”)

print (“Outside If block”)

# When Condition is False

number = -6

if number > 0:

         print (number,”Positive Number”)

print (“Outside If block”)

Output

6 Positive Number

Outside If block

Read: Python Challenges For Beginners

If Else Statement

We cannot use only If statements for all the conditions that are required in each problem statement to develop our code. In some situations, we might have multiple conditions, that is why we have another conditional statement called IF ELSE.

This is like an IF statement, but we have two blocks here and one conditional expression. The if code block will run if the expression is True and else code block will run if the expression is false. IF ELSE statement uses if and else keywords.

Syntax

If test condition expression:

         Code block for if

Else:

         Code block for else

Code block outside

Example

# Example for IF ELSE Statement

# When Condition in True

number = 6

if number > 0:

         print(number,”Positive Number”)

else:

         print(number,”Negative Number”)

print(“Outside If block”)

# When Condition in True

number = -1

if number > 0:

         print(number,”Positive Number”)

else:

         print(number,”Negative Number”)

print(“Outside If block”)

 

Output

6 Positive Number

Outside If block

-1 Negative Number

Outside If block

Our learners also read: Free Python Course with Certification

Elif Statement

As discussed in the above conditional statement we tend to have multiple conditions that we need to take care of when we are developing a code for a business-related problem. One of such statements is ELIF Statement, this is used when we must check multiple conditions.

ELIF is a short form for ELSE IF. In ELIF, first the test condition expression is checked if it is True then the if code block is executed. If the ELIF first condition is false, the next ELIF test condition is checked and this is repeated until the last elif condition. If all the ELIF conditions are false, then the else code block will be executed. ELIF Statements are written by using if elif and else keywords.

Learn data science certification course from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs, or Masters Programs to fast-track your career.

Syntax

If test condition expression:

         Code block for if

elif test condition expression 1:

         Code block for elif 1

elif test condition expression 2:

         Code block for elif 2

….

else:

         Code block for else

Code block outside

Example

# Example for ELIF Statement

# When one of the Condition is True

number = 90

if number == 0:

         print(number,”Condition 1 is true”)

elif number == 30:

         print(number,”Condition 2 is true”)

elif number == 60:

         print(number,”Condition 3 is true”)

elif number == 90:

         print(number,”Condition 4 is true”)

else:

         print(number,”None of the Conditions are true”)

print(“Outside elif block”)

 

# When none of the Conditions are True

number = 50

if number == 0:

         print(number,”Condition 1 is true”)

elif number == 30:

         print(number,”Condition 2 is true”)

elif number == 60:

         print(number,”Condition 3 is true”)

elif number == 90:

         print(number,”Condition 4 is true”)

else:

         print(number,”None of the Conditions are true”)

print(“Outside elif block”)

Output

90 Condition 4 is true

Outside elif block

50 None of the Conditions are true

Outside elif block

Also Read: Fascinating Python Applications in Real World

Explore our Popular Data Science Courses

Nested IF Statement

Nested IF Statements are used when we want to execute a certain code where there are two or more conditions to be met. This statement uses only if and else keywords.

upGrad’s Exclusive Data Science Webinar for you –

ODE Thought Leadership Presentation

 

Syntax

If test condition expression:

     If test condition expression:

                     Code block for if

         else:

                     code block for else

else:

code block for else

Example

# Example for NESTED IF Statement

# Both the conditions are true

number = 10

if number >= 0:

         if number == 10:

                     print(‘The given number is 10’)

         else:

                     print(“The given number is a positive number”)

else:

         print(“The given number is a negative number”)

print(“Outside nested if block”)

 

# One of the conditions are true

number = 20

if number >= 0:

         if number == 10:

                     print(‘The given number is 10’)

         else:

                     print(“The given number is a positive number”)

else:

         print(“The given number is a negative number”)

print(“Outside nested if block”)

## None of the conditions are true

number = -10

if number >= 0:

         if number == 10:

                     print(‘The given number is 10’)

         else:

                     print(“The given number is a positive number”)

else:

         print(“The given number is a negative number”)

print(“Outside nested if block”)

Output

The given number is 10

Outside nested if block

The given number is a positive number

Outside nested if block

The given number is a negative number

Outside nested if block

Top Data Science Skills to Learn

Conclusion

In this article we got to know the importance of the conditional statements in the Programming language. We deep dived into the different conditional statements in Python Programming language. We have also looked into the practical implementation of the various conditional statements along with their suitable examples.

Read our popular Data Science Articles

If you are curious to learn about data science, check out IIIT-B & upGrad’s Executive PG Program in Data Science which is created for working professionals and offers 10+ case studies & projects, practical hands-on workshops, mentorship with industry experts, 1-on-1 with industry mentors, 400+ hours of learning and job assistance with top firms.

Profile

Rohit Sharma

Blog Author
Rohit Sharma is the Program Director for the UpGrad-IIIT Bangalore, PG Diploma Data Analytics Program.

Frequently Asked Questions (FAQs)

1What are conditional statements?

A conditional statement is mathematical reasoning that allows students to examine a given hypothesis without resorting to a specific context or meaning. Conditional statements include if statements, if-else statements, elif statements, and nested if statements. A conditional statement works on the principle of If p, then q where p stands for hypothesis, while q stands for conclusion. It is also known as an implication.

2Is learning python a good option?

With an ever-expanding community centered on data science, machine learning, AI, web development, and other topics, Python is the programming language that connects all this technology. Python is regarded as one of the easiest server-side software languages to read, write, and learn. It's also highly scalable. It is an incredibly flexible programming language with several applications. It is also in great demand for employment and pays well. The world's top corporations use it, and at the same time, it is also ideal for quick and basic experiments.

3What is the average salary of python professionals?

In India, the average entry-level Python Developer Salary is INR 4,27,293 per year. The average Python Developer Salary in India for mid-level professionals is INR 9,09,818 a year, while the average Python Developer Salary in India for experienced professionals is INR 11,50,000. Salary is determined not just by experience but also by a variety of other criteria such as the candidate's programming and negotiating abilities, corporate requirements and financials, and so on.

Explore Free Courses

Suggested Blogs

Priority Queue in Data Structure: Characteristics, Types & Implementation
57465
Introduction The priority queue in the data structure is an extension of the “normal” queue. It is an abstract data type that contains a
Read More

by Rohit Sharma

15 Jul 2024

An Overview of Association Rule Mining & its Applications
142458
Association Rule Mining in data mining, as the name suggests, involves discovering relationships between seemingly independent relational databases or
Read More

by Abhinav Rai

13 Jul 2024

Data Mining Techniques & Tools: Types of Data, Methods, Applications [With Examples]
101682
Why data mining techniques are important like never before? Businesses these days are collecting data at a very striking rate. The sources of this eno
Read More

by Rohit Sharma

12 Jul 2024

17 Must Read Pandas Interview Questions & Answers [For Freshers & Experienced]
58112
Pandas is a BSD-licensed and open-source Python library offering high-performance, easy-to-use data structures, and data analysis tools. The full form
Read More

by Rohit Sharma

11 Jul 2024

Top 7 Data Types of Python | Python Data Types
99371
Data types are an essential concept in the python programming language. In Python, every value has its own python data type. The classification of dat
Read More

by Rohit Sharma

11 Jul 2024

What is Decision Tree in Data Mining? Types, Real World Examples & Applications
16859
Introduction to Data Mining In its raw form, data requires efficient processing to transform into valuable information. Predicting outcomes hinges on
Read More

by Rohit Sharma

04 Jul 2024

6 Phases of Data Analytics Lifecycle Every Data Analyst Should Know About
82797
What is a Data Analytics Lifecycle? Data is crucial in today’s digital world. As it gets created, consumed, tested, processed, and reused, data goes
Read More

by Rohit Sharma

04 Jul 2024

Most Common Binary Tree Interview Questions & Answers [For Freshers & Experienced]
10462
Introduction Data structures are one of the most fundamental concepts in object-oriented programming. To explain it simply, a data structure is a par
Read More

by Rohit Sharma

03 Jul 2024

Data Science Vs Data Analytics: Difference Between Data Science and Data Analytics
70270
Summary: In this article, you will learn, Difference between Data Science and Data Analytics Job roles Skills Career perspectives Which one is right
Read More

by Rohit Sharma

02 Jul 2024

Schedule 1:1 free counsellingTalk to Career Expert
icon
footer sticky close icon