Bootcamps

Explore our extensive collection of courses designed to help you master various subjects and skills. Whether you're a beginner or an advanced learner, there's something here for everyone.

Academy

Learn live

Join us for our free workshops, webinars, and other events to learn more about our programs and get started on your journey to becoming a developer.

Upcoming live events

Learning library

For all the self-taught geeks out there, here is our content library with most of the learning materials we have produced throughout the years.

It makes sense to start learning by reading and watching videos about fundamentals and how things work.

Full-Stack Software Developer - 16w

Data Science and Machine Learning - 16 wks

Search from all Lessons


LoginGet Started

Weekly Coding Challenge

Every week, we pick a real-life project to build your portfolio and get ready for a job. All projects are built with ChatGPT as co-pilot!

Start the Challenge

Podcast: Code Sets You Free

A tech-culture podcast where you learn to fight the enemies that blocks your way to become a successful professional in tech.

Listen the podcast
← Back to How to's
Edit on Github

What does a double equal sign mean in Python?

Written by:

In Python, the double equal sign == is a relevant operator that is used to compare two variables or values and determine whether they are equal or not. We will explore the utility of this operator in Python and how can be used in different situations. We prepared an article as an Intro to Python that we recommend to check before reading the following piece of content. Let’s start with a quick example so we can understand its functionality.

Let’s suppose that we have 2 variables called a and b with the following values assigned to:

1a = 5 2b = 10

Now, we want to verify if a is equal to b by using the double equal sign operator:

1if a == b: 2 print("a is equal to b") 3else: 4 print("a is not equal to b")

On the previous example, we declared 2 variables a and b with values 5 and 10 respectively. Then, we used the double equal sign operator in an if-else block to compare a and b values. Finally, if a is equal to b, our code will print "a is equal to b", otherwise it will print "a is not equal to b".

What does the double equal sign mean?

This operator in Python shows a comparison used to verify if a value is equal to another one. In this way, Python compares values on both sides of the operator and returns True if they are equal and False if they are not. Now, let's see different conditions' use cases.

Verification of numerical equality

1num1 = 15 2num2 = 15 3 4if num1 == num2: 5 print("Both numbers are the same") 6else: 7 print("Numbers are different")

In the previous example, we have two variables with the same numbers as values. When using the double equal sign ==, the program will print "Both numbers are the same" since both variables have the same number.

String Comparison

1name_1 = "John" 2name_2 = "Alexa" 3 4if name_1 == name_2: 5 print(“Names are the same”) 6else: 7 print("Names are different")

In this case, we have two variables that contain strings as values. Due to both strings being different, our code will print "Names are different".

Evaluation of Boolean expressions

Let's see our final example:

1truthy_variable = True 2falsy_variable = False 3 4if truthy_variable == falsy_variable: 5 print("Both values are the same") 6else: 7 print("Both values are different")

Finally, in this last example, we are comparing two boolean variables and because they are different, our code will print "Both values are different" as expected.

Conclusion

The double equal sign operator in Python is completely essential when we want to compare values and evaluate conditions with if statements. This allows us to check if values are the same or not, which leads to different outputs depending on the values we have on variables.

We hope you can understand the use and importance of the double equal sign operator in Python. Now, you can enhance your programming skills with this knowledge and take better decisions in your apps. You can check the 4Geeks Blog for more amazing content.