Python is a widely used programming language that provides a rich set of operators for performing mathematical and logical operations on variables and values. Operators in Python can be classified into several categories based on their functionality, including arithmetic, comparison, logical, bitwise, assignment, and identity operators.
1. Arithmetic Operators :
pythona = 10
b = 3
print(a + b) # Output: 13
print(a - b) # Output: 7
print(a * b) # Output: 30
print(a / b) # Output: 3.3333333333333335
print(a % b) # Output: 1
2. Comparison Operators :
pythona = 10
b = 3
print(a == b) # Output: False
print(a != b) # Output: True
print(a > b) # Output: True
print(a < b) # Output: False
print(a >= b) # Output: True
print(a <= b) # Output: False
3. Logical Operators :
pythona = True
b = False
print(a and b) # Output: False
print(a or b) # Output: True
print(not a) # Output: False
4. Bitwise Operators :
pythona = 0b1010
b = 0b1100
print(bin(a & b)) # Output: 0b1000
print(bin(a | b)) # Output: 0b1110
print(bin(a ^ b)) # Output: 0b0110
print(bin(~a)) # Output: -0b1011
print(bin(a << 2)) # Output: 0b101000
print(bin(b >> 2)) # Output: 0b0011
5. Assignment Operators :
python a = 10
a += 5
print(a) # Output: 15
a -= 3
print(a) # Output: 12
a *= 2
print(a) # Output: 24
a /= 4
print(a) # Output: 6.0
6. Identity Operators : Identity operators are used to check if two variables refer to the same object in memory. The two identity operators supported in Python are is and is not. For example:
pythona = [1, 2, 3]
b = a
c = [1, 2, 3]
print(a is b) # Output: True
print(a is not c) # Output: True
In this example, the variable b is assigned to the same object as variable a, so a is b returns True. However, variable c is assigned to a new object with the same values as a, so a is not c returns True.
7. Membership Operators :
pythona = [1, 2, 3, 4, 5]
print(3 in a) # Output: True
print(6 not in a) # Output: True
b = "Hello, Achinta!"
print("A" in b) # Output: True
print("achinta" not in b) # Output: True
In this example, we check if the value 3 exists in the list a and the value "W" exists in the string b. We also check if the value 6 does not exist in the list a and the string "world" does not exist in the string b.
Operator Precedence
Here is the list of operator precedence in Python from highest to lowest:
- Parentheses ( )
- Exponentiation **
- Positive and negative signs +x, -x
- Multiplication *, Division /, Modulus %, and Floor Division //
- Addition +, Subtraction -
- Bitwise Shifts <<, >>
- Bitwise AND &
- Bitwise XOR ^
- Bitwise OR |
- Comparison Operators ==, !=, >, <, >=, <=
- Logical NOT not
- Logical AND and
- Logical OR or
- Membership Operators in, not in
- Identity Operators is, is not
- Assignment Operators =, +=, -=, *=, /=, //=, %=, **=, &=, |=, ^=, <<=, >>=
In conclusion, Python provides a rich set of operators that enable developers to perform various types of operations on variables and values. Understanding the different types of operators, their functionality, and operator precedence is essential for writing efficient and effective Python code.