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
Top Data Science Skills to Learn
1
Data Analysis Course
Inferential Statistics Courses
2
Hypothesis Testing Programs
Logistic Regression Courses
3
Linear Regression Courses
Linear Algebra for Analysis
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.
What 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.
Is 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.
What 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.