Python

Python Basics

Data Structures in Python

Python Core Concepts

Python Collections

Python Programs

Python Operators (Arithmetic, Logical, Comparison)

Python is a versatile and beginner-friendly programming language widely used for web development, data analysis, artificial intelligence, and more. One of the fundamental concepts in Python is the use of operators. Operators are special symbols or keywords that perform specific operations on variables and values. In this guide, we’ll explore three essential types of operators in Python: arithmetic, logical, and comparison operators. By the end of this article, you’ll have a clear understanding of how these operators work and how to use them in your code.


1. Arithmetic Operators

Arithmetic operators are used to perform basic mathematical operations like addition, subtraction, multiplication, and division. These operators are essential for performing calculations in Python. Let’s take a look at the most common arithmetic operators:

OperatorDescriptionExampleResult
+Addition5 + 38
-Subtraction10 - 46
*Multiplication7 * 214
/Division15 / 35.0
%Modulus (remainder)10 % 31
**Exponentiation2 ** 38
//Floor Division17 // 35

Examples of Arithmetic Operators in Action

# Addition
print(10 + 5)  # Output: 15

# Subtraction
print(20 - 7)  # Output: 13

# Multiplication
print(6 * 4)   # Output: 24

# Division
print(25 / 5)  # Output: 5.0

# Modulus
print(10 % 3)  # Output: 1

# Exponentiation
print(2 ** 4)  # Output: 16

# Floor Division
print(17 // 3) # Output: 5

Arithmetic operators are straightforward and work just like they do in basic math. However, remember that the / operator always returns a float, even if the result is a whole number. If you want an integer result, use the // operator for floor division.


2. Comparison Operators

Comparison operators are used to compare two values or variables. They return a Boolean value (True or False) based on whether the comparison is true or false. These operators are often used in decision-making and loops.

Here are the most common comparison operators:

OperatorDescriptionExampleResult
==Equal to5 == 5True
!=Not equal to10 != 5True
>Greater than7 > 3True
<Less than4 < 2False
>=Greater than or equal to8 >= 8True
<=Less than or equal to6 <= 5False

Examples of Comparison Operators

# Equal to
print(10 == 10)  # Output: True

# Not equal to
print(7 != 3)    # Output: True

# Greater than
print(15 > 10)   # Output: True

# Less than
print(4 < 2)     # Output: False

# Greater than or equal to
print(8 >= 8)    # Output: True

# Less than or equal to
print(6 <= 5)    # Output: False

Comparison operators are essential for controlling the flow of your program. For example, you can use them in if statements to execute specific code blocks based on certain conditions.


3. Logical Operators

Logical operators are used to combine multiple conditions and evaluate them as a single expression. These operators are often used in decision-making and loops to create more complex conditions.

The three main logical operators in Python are:

OperatorDescriptionExampleResult
andTrue if both conditions are true(5 > 3) and (10 < 20)True
orTrue if at least one condition is true(5 > 3) or (10 > 20)True
notReverses the result of the conditionnot (5 > 3)False

Examples of Logical Operators

# AND operator
print((5 > 3) and (10 < 20))  # Output: True

# OR operator
print((5 > 3) or (10 > 20))   # Output: True

# NOT operator
print(not (5 > 3))             # Output: False

Logical operators are powerful tools for creating complex conditions. For example, you can use the and operator to ensure that multiple conditions are met before executing a block of code.


Combining Operators

In real-world programming, you’ll often need to combine different types of operators to achieve your goals. For example, you might use arithmetic operators to calculate a value, comparison operators to compare it with another value, and logical operators to make a decision based on the result.

Here’s an example that combines all three types of operators:

# Calculate the area of a rectangle
length = 10
width = 5
area = length * width  # Arithmetic operator

# Check if the area is greater than 40 and even
if area > 40 and area % 2 == 0:  # Comparison and logical operators
    print("The area is greater than 40 and even.")
else:
    print("The area does not meet the conditions.")

In this example, we first calculate the area using the * arithmetic operator. Then, we use the > comparison operator and the and logical operator to check if the area meets specific conditions.