Python if...else statements

I'm a full-stack developer from South Africa 🇿🇦. I love writing about JavaScript, HTML and CSS.
Search for a command to run...

I'm a full-stack developer from South Africa 🇿🇦. I love writing about JavaScript, HTML and CSS.
Thank you so much Shlok Dungrani
Most of you know me for my consistency, a golden arrow in my blog series. I've written 1000 articles in 1008 days! Almost an article a day, and my honeymoon was the only holiday I ever took. I'm super proud of this achievement; it has been a fantasti...

It's not the first time I'll be talking about community. I think it's an essential aspect of any successful tool. This shows in my previous explorations of Astro, Medusa, and now Vendure as well. All these products thrive in a super open, welcoming, ...

The cool part about Vendure is how easy it is to set up and how abstract each layer is. Basically, we get the following elements: External database Server Worker Admin UI Frontend While this is amazing, it also brings a bit of complexity when it co...

The previous article looked at customizing Vendure on a data and process level. In this article, we'll look at customizing emails, as they are often a big part of a webshop system. We'll be looking at two different layers of customization for customi...

Even though Vendure is a pretty significant project out of the box, in some cases, we might want to go in and modify some elements to work to our specific use case. In this article, I'll take a high-level look at some elements we can customize within...

Since I'm still new to exploring the Python world, I thought it would be good to understand the syntax behind if...else statements.
Let's start by looking at a regular if statement. In python this will be used as the following syntax.
if condition:
# do something
You might want to check a variable for True/False, check if a number is higher/lower, or a string is a certain value.
number = 5
string = "Chris"
boolean = True
if number > 3:
print("Number is positive")
if string == "Chris":
print("Chris in the building")
if boolean == True:
print("Boolean is true")
This will result in the following:
Number is positive
Chris in the building
Boolean is true
The cool part about this is that we can have multiple returns by using the correct indentation.
Let's say we need two lines of prints.
if number > 3:
print("Number is positive")
print("This is a second positive line")
That will return both lines if the statement is met!
As you may have guessed, this also gives us an excellent opportunity to use an else statement if the if fails.
The logic for that is as follows:
if condition:
# do something
else:
# do something else
Let's try that out with a better use case.
number = 10
if number > 20:
print("Number is bigger then 20")
else:
print("It's a smaller number")
Running this code will result in:
It's a smaller number
The if...else might be a good solution for static boolean checks. In most real-world examples, you might want to add a specific second, third, or more if.
For that, we can use the elif, which states if the previous condition was not met, try this one.
This can still fall back to an else if we define one.
The logic:
if condition:
# do thing 1
elif condition 2:
# do thing 2
else:
# do something else
Let's try that out by checking if a number is smaller or equal.
a = 5
b = 5
if(a > b):
print("A is greater than B")
elif a == b:
print("A and B are equal")
else:
print("B is greater than A")
Which will result in:
A and B are equal
This kind of elif statement can be used multiple times.
Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter