Python Operators :

What is Operators and Operands?

Operators are special symbols that represent computations like addition and multiplication. The values the operator is applied to are called operands. Python language supports the following types of operators:


Python Arithmetic Operators :

Assume variable a = 10 and variable b = 20, then :

Operators Description Example
+ Addition Adds values on either side of the operator a + b = 30
- Subtraction Subtracts right hand operand from left hand operand a – b = -10
* Multiplication Multiplies values on either side of the operator a * b = 200
/ Division Divides left hand operand by right hand operand b / a = 2
% Modulus Divides left hand operand by right hand operand and returns remainder b % a = 0
** Exponent Performs exponential (power) calculation on operators a**b =10 to the power 20
// Floor Division 9//2 = 4 and 9.0//2.0 = 4.0, -11//3 = -4, -11.0//3 = -4.0

Note : The division of operands where the result is the quotient in which the digits after the decimal point are removed. But if one of the operands is negative, the result is floored, i.e., rounded away from zero (towards negative infinity)


Example :

  1. a = 10
  2. b = 20
  3. c = 0
  4. c = a + b
  5. print ("\n Addition - Value of c is ", c)
  6. c = a - b
  7. print ("\n subtraction - Value of c is ", c)
  8. c = a * b
  9. print ("\n Multiplication - Value of c is ", c)
  10. c = b / a
  11. print ("\n Division - Value of c is ", c)
  12. c = b % a
  13. print ("\n Modulus - Value of c is ", c)
  14. c = a**b
  15. print ("\n Exponent - Value of c is ", c)
  16. a = 9.0
  17. b = 2.0
  18. c = a//b
  19. print ("\n Floor Dvision - Value of c is ", c)
  20. input()

Output :

python arithmetic operators

Python Comparison (Relational) Operators :

These operators compare the values on either sides of them and decide the relation among them. They are also called Relational operators. Assume variable a = 10 and variable b = 20, then :

Operators Description Example
== If the values of two operands are equal, then the condition becomes true. (a == b) is not true.
!= If values of two operands are not equal, then condition becomes true. (a != b) is true.
> If the value of left operand is greater than the value of right operand, then condition becomes true. (a > b) is not true.
< If the value of left operand is less than the value of right operand, then condition becomes true. (a < b) is true.
>= If the value of left operand is greater than or equal to the value of right operand, then condition becomes true. (a >= b) is not true.
<= If the value of left operand is less than or equal to the value of right operand, then condition becomes true. (a <= b) is true.

Example :

  1. a = 10
  2. b = 20
  3. if ( a == b ):
  4. print ("(=) - a is equal to b")
  5. else:
  6. print ("(=) - a is not equal to b")
  7. if ( a != b ):
  8. print ("(!=) - a is not equal to b")
  9. else:
  10. print ("(!=) - a is equal to b")
  11. if ( a < b ):
  12. print ("(<) - a is less than b")
  13. else:
  14. print ("(<) - a is not less than b")
  15. if ( a > b ):
  16. print ("(>) - a is greater than b")
  17. else:
  18. print ("(>) - a is not greater than b")
  19. a = 50;
  20. b = 20;
  21. if ( a <= b ):
  22. print ("(<=) - a is either less than or equal to b")
  23. else:
  24. print ("(<=) - a is neither less than nor equal to b")
  25. if ( b >= a ):
  26. print ("(>=) - b is either greater than or equal to b")
  27. else:
  28. print ("(>=) - b is neither greater than nor equal to b")
  29. input()

Output :

python comparison operators

Python Assignment Operators :

Assume variable a = 10 and variable b = 20, then :

Operators Description Example
= Assigns values from right side operands to left side operand c = a + b assigns value of a + b into c
+= Add AND It adds right operand to the left operand and assign the result to left operand c += a is equivalent to c = c + a
-= Subtract AND It subtracts right operand from the left operand and assign the result to left operand c -= a is equivalent to c = c - a
*= Multiply AND It multiplies right operand with the left operand and assign the result to left operand c *= a is equivalent to c = c * a
/= Divide AND It divides left operand with the right operand and assign the result to left operand c /= a is equivalent to c = c / ac /= a is equivalent to c = c / a
%= Modulus AND It takes modulus using two operands and assign the result to left operand c %= a is equivalent to c = c % a
**= Exponent AND Performs exponential (power) calculation on operators and assign value to the left operand c **= a is equivalent to c = c ** a
//= Floor Division It performs floor division on operators and assign value to the left operand c //= a is equivalent to c = c // a

Example :

  1. a = 10
  2. b = 20
  3. c = 0
  4. c = a + b
  5. print ("Assigns values - Value of c is ", c)
  6. c += a
  7. print ("Add AND - Value of c is ", c)
  8. c -= a
  9. print ("Subtract AND - Value of c is ", c)
  10. c *= a
  11. print ("Multiply AND - Value of c is ", c)
  12. c /= a
  13. print ("Divide AND - Value of c is ", c)
  14. c = 2
  15. c %= a
  16. print ("Modulus AND - Value of c is ", c)
  17. c **= a
  18. print ("Exponent AND - Value of c is ", c)
  19. c //= a
  20. print ("Floor Division - Value of c is ", c)
  21. input()

Output :

python assignment operators

Python Bitwise Operators :

Bitwise operator works on bits and performs bit by bit operation. Assume if a = 60 and b = 13 Now in binary format they will be as follows :
a = 0011 1100
b = 0000 1101

Operators Description Example
& Binary AND Operator copies a bit to the result if it exists in both operands (a & b) (means 0000 1100)
| Binary OR It copies a bit if it exists in either operand (a | b) = 61 (means 0011 1101)
^ Binary XOR It copies the bit if it is set in one operand but not both (a ^ b) = 49 (means 0011 0001)
~ Binary Ones Complement It is unary and has the effect of 'flipping' bits (~a ) = -61 (means 1100 0011 in 2's complement form due to a signed binary number
<< Binary Left Shift The left operands value is moved left by the number of bits specified by the right operand a << 2 = 240 (means 1111 0000)
>> Binary Right Shift The left operands value is moved right by the number of bits specified by the right operand a >> 2 = 15 (means 0000 1111)

Example :

  1. a = 60 #60 = 0011 1100
  2. b = 13 #13 = 0000 1101
  3. c = 0
  4. c = a & b; #12 = 0000 1100
  5. print ("Binary AND - Value of c is ", c)
  6. c = a | b; #61 = 0011 1101
  7. print ("Binary OR - Value of c is ", c)
  8. c = a ^ b; #49 = 0011 0001
  9. print ("Binary XOR - Value of c is ", c)
  10. c *= a
  11. print ("Multiply AND - Value of c is ", c)
  12. c = ~a; #-61 = 1100 0011
  13. print ("Binary Ones Complement - Value of c is ", c)
  14. c = a << 2; #240 = 1111 0000
  15. print ("Binary Left Shift - Value of c is ", c)
  16. c = a >> 2; #15 = 0000 1111
  17. print ("Binary Right Shift - Value of c is ", c)
  18. input()

Output :

python bitwise operators

Python Logical Operators :

Assume variable a = 10 and variable b = 20, then :

Operators Description Example
and Logical AND If both the operands are true then condition becomes true. (a and b) is true.
or Logical OR If any of the two operands are non-zero then condition becomes true. (a or b) is true.
not Logical NOT Used to reverse the logical state of its operand. Not(a and b) is false.

Example :

  1. a = 10
  2. b = 20
  3. if a and b:
  4. print("and - true")
  5. else:
  6. print("and - false")
  7. if a or b:
  8. print("or - true")
  9. else:
  10. print("or - false")
  11. if not b:
  12. print("not - true")
  13. else:
  14. print("not - false")
  15. input()

Output :

python logical operators

Python Membership Operators :

Python’s membership operators test for membership in a sequence, such as strings, lists, or tuples. There are two membership operators as explained below :

Operators Description Example
in Evaluates to true if it finds a variable in the specified sequence and false otherwise. x in y, here in results in a 1 if x is a member of sequence y.
not in Evaluates to true if it does not finds a variable in the specified sequence and false otherwise. x not in y, here not in results in a 1 if x is not a member of sequence y.

( Assume variable a = 10 and variable b = 20 )

Example :

  1. a = 10
  2. b = 20
  3. list = [1, 2, 3, 4, 5, 10 ];
  4. if ( a in list ):
  5. print ("(in) - a is available in the given list")
  6. else:
  7. print ("(in) - a is not available in the given list")
  8. if ( b not in list ):
  9. print ("(not in) - b is not available in the given list")
  10. else:
  11. print ("(not in) - b is available in the given list")
  12. input()

Output :

python membership operators

Python Identity Operators :

Identity operators compare the memory locations of two objects. There are two Identity operators explained below :

Operators Description Example
is Evaluates to true if the variables on either side of the operator point to the same object and false otherwise. x is y, here is results in 1 if id(x) equals id(y).
is not Evaluates to false if the variables on either side of the operator point to the same object and true otherwise. x is not y, here is not results in 1 if id(x) is not equal to id(y).

( Assume variable a = 20 and variable b = 20 )

Example :

  1. a = 20
  2. b = 20
  3. if ( a is b ):
  4. print ("(is) - a and b have same identity")
  5. else:
  6. print ("(is) - a and b do not have same identity")
  7. if ( id(a) == id(b) ):
  8. print ("(id) - a and b have same identity")
  9. else:
  10. print ("(id) - a and b have same identity")
  11. a = 10
  12. if ( a is not b ):
  13. print ("(is not) - a and b do not have same identity")
  14. else:
  15. print ("(is not) - a and b have same identity")
  16. input()

Output :

python identity operators

Computer Science Engineering

Special Notes

It's a special area where you can find special questions and answers for CSE students or IT professionals. Also, In this section, we try to explain a topic in a very deep way.

CSE Notes