Python – Arithmetic Operators

Arithmetic operators are an essential part of any programming language, including Python. They allow us to perform mathematical operations on numerical values. In this article, we will explore the different arithmetic operators available in Python, along with examples to illustrate their usage.

1. Addition Operator (+):
The addition operator is used to add two or more numbers together. It can also be used to concatenate strings.

Example 1:
“`python
a = 5
b = 3
result = a + b
print(result) # Output: 8
“`

Example 2:
“`python
str1 = “Hello”
str2 = “World”
result = str1 + ” ” + str2
print(result) # Output: Hello World
“`

2. Subtraction Operator (-):
The subtraction operator is used to subtract one number from another.

Example:
“`python
a = 10
b = 7
result = a – b
print(result) # Output: 3
“`

3. Multiplication Operator (*):
The multiplication operator is used to multiply two or more numbers.

Example:
“`python
a = 4
b = 6
result = a * b
print(result) # Output: 24
“`

4. Division Operator (/):
The division operator is used to divide one number by another. It returns a floating-point result.

Example:
“`python
a = 10
b = 3
result = a / b
print(result) # Output: 3.3333333333333335
“`

5. Floor Division Operator (//):
The floor division operator is used to divide one number by another and return the integer part of the result, discarding any decimal places.

Example:
“`python
a = 10
b = 3
result = a // b
print(result) # Output: 3
“`

6. Modulo Operator (%):
The modulo operator is used to find the remainder of the division between two numbers.

Example:
“`python
a = 10
b = 3
result = a % b
print(result) # Output: 1
“`

7. Exponentiation Operator (**):
The exponentiation operator is used to raise a number to the power of another number.

Example:
“`python
a = 2
b = 3
result = a ** b
print(result) # Output: 8
“`

These are the basic arithmetic operators in Python. They can be used with variables, constants, or a combination of both. It is important to note that the order of operations (PEMDAS/BODMAS) applies to arithmetic expressions in Python, allowing you to perform complex calculations.

Example:
“`python
result = (5 + 3) * 2 – 4 / 2
print(result) # Output: 14.0
“`

In this example, the addition and subtraction operations are performed first, followed by the multiplication and division operations, according to the order of operations.

Arithmetic operators are fundamental tools for performing mathematical calculations in Python. Understanding their usage and how they interact with different data types is crucial for writing effective and efficient code.

By utilizing these arithmetic operators, you can perform a wide range of mathematical operations in Python, from simple addition to complex calculations involving multiple variables. Experiment with these operators and explore their versatility to enhance your programming skills.

Remember, practice makes perfect, so keep coding and experimenting with arithmetic operators to become proficient in their usage.

Scroll to Top