9/6/22, 4:18 PM Python - Basic Operators
Python - Basic Operators
Python Programming
26 Lectures 7.5 hours
DATAhill Solutions Srinivas Reddy
More Detail
Python For Beginners: Learn Python Programming (Python 3)
60 Lectures 2 hours
Jason Cannon
More Detail
Practical Python: Learn Python Basics Step By Step - Python 3
54 Lectures 3.5 hours
https://www.tutorialspoint.com/python/python_basic_operators.htm 1/9
9/6/22, 4:18 PM Python - Basic Operators
Edouard Renard
More Detail
Operators are the constructs which can manipulate the value of operands.
Consider the expression 4 + 5 = 9. Here, 4 and 5 are called operands and + is called operator.
Types of Operator
Python language supports the following types of operators.
Arithmetic Operators
Comparison (Relational) Operators
Assignment Operators
Logical Operators
Bitwise Operators
Membership Operators
Identity Operators
Let us have a look on all operators one by one.
Python Arithmetic Operators
Assume variable a holds 10 and variable b holds 20, then −
[ Show Example ]
https://www.tutorialspoint.com/python/python_basic_operators.htm 2/9
9/6/22, 4:18 PM Python - Basic Operators
Operator Description Example
+ Addition Adds values on either side of the operator. a + b = 30
- Subtraction Subtracts right hand operand from left hand a – b = -10
operand.
* Multiplies values on either side of the a * b = 200
Multiplication operator
/ Division Divides left hand operand by right hand b/a=2
operand
% Modulus Divides left hand operand by right hand b%a=0
operand and returns remainder
** Exponent Performs exponential (power) calculation a**b =10 to the power 20
on operators
// Floor Division - The division of operands 9//2 = 4 and 9.0//2.0 = 4.0, -11//3 = -4,
where the result is the quotient in which the -11.0//3 = -4.0
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) −
Python Comparison 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 holds 10 and variable b holds 20, then −
[ Show Example ]
https://www.tutorialspoint.com/python/python_basic_operators.htm 3/9
9/6/22, 4:18 PM Python - Basic Operators
Operator Description Example
== If the values of two operands are equal, (a == b) is not true.
then the condition becomes true.
!= If values of two operands are not equal, (a != b) is true.
then condition becomes true.
<> If values of two operands are not equal, (a <> b) is true. This is similar to !=
then condition becomes true. operator.
> If the value of left operand is greater than (a > b) is not true.
the value of right operand, then condition
becomes true.
< If the value of left operand is less than the (a < b) is true.
value of right operand, then condition
becomes true.
>= If the value of left operand is greater than or (a >= b) is not true.
equal to the value of right operand, then
condition becomes true.
<= If the value of left operand is less than or (a <= b) is true.
equal to the value of right operand, then
condition becomes true.
Python Assignment Operators
Assume variable a holds 10 and variable b holds 20, then −
[ Show Example ]
https://www.tutorialspoint.com/python/python_basic_operators.htm 4/9
9/6/22, 4:18 PM Python - Basic Operators
Operator Description Example
= Assigns values from right side operands to
c = a + b assigns value of a + b into c
left side operand
+= Add It adds right operand to the left operand
c += a is equivalent to c = c + a
AND and assign the result to left operand
-= It subtracts right operand from the left
Subtract operand and assign the result to left c -= a is equivalent to c = c - a
AND operand
*= It multiplies right operand with the left
Multiply operand and assign the result to left c *= a is equivalent to c = c * a
AND operand
/= Divide It divides left operand with the right operand
c /= a is equivalent to c = c / a
AND and assign the result to left operand
%= It takes modulus using two operands and
Modulus assign the result to left operand c %= a is equivalent to c = c % a
AND
**= Performs exponential (power) calculation
Exponent on operators and assign value to the left c **= a is equivalent to c = c ** a
AND operand
//= Floor It performs floor division on operators and
c //= a is equivalent to c = c // a
Division assign value to the left operand
Python Bitwise Operators
Bitwise operator works on bits and performs bit by bit operation. Assume if a = 60; and b = 13;
Now in the binary format their values will be 0011 1100 and 0000 1101 respectively. Following
table lists out the bitwise operators supported by Python language with an example each in
those, we use the above two variables (a and b) as operands −
a = 0011 1100
b = 0000 1101
-----------------
a&b = 0000 1100
a|b = 0011 1101
a^b = 0011 0001
~a = 1100 0011
There are following Bitwise operators supported by Python language
https://www.tutorialspoint.com/python/python_basic_operators.htm 5/9
9/6/22, 4:18 PM Python - Basic Operators
[ Show Example ]
Operator Description Example
& Binary Operator copies a bit to the result if it exists
(a & b) (means 0000 1100)
AND in both operands
| Binary OR It copies a bit if it exists in either operand. (a | b) = 61 (means 0011 1101)
^ Binary It copies the bit if it is set in one operand
(a ^ b) = 49 (means 0011 0001)
XOR but not both.
~ Binary (~a ) = -61 (means 1100 0011 in 2's
It is unary and has the effect of 'flipping'
Ones complement form due to a signed
bits.
Complement binary number.
<< Binary The left operands value is moved left by the
Left Shift number of bits specified by the right a << 2 = 240 (means 1111 0000)
operand.
>> Binary The left operands value is moved right by
Right Shift the number of bits specified by the right a >> 2 = 15 (means 0000 1111)
operand.
Python Logical Operators
There are following logical operators supported by Python language. Assume variable a holds 10
and variable b holds 20 then
[ Show Example ]
Operator Description Example
and If both the operands are true then condition (a and b) is true.
Logical becomes true.
AND
or If any of the two operands are non-zero (a or b) is true.
Logical then condition becomes true.
OR
not Used to reverse the logical state of its Not(a and b) is false.
Logical operand.
NOT
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 −
https://www.tutorialspoint.com/python/python_basic_operators.htm 6/9
9/6/22, 4:18 PM Python - Basic Operators
[ Show Example ]
Operator Description Example
in Evaluates to true if it finds a variable in the x in y, here in results in a 1 if x is a
specified sequence and false otherwise. member of sequence y.
not in Evaluates to true if it does not finds a x not in y, here not in results in a 1 if x is
variable in the specified sequence and false not a member of sequence y.
otherwise.
Python Identity Operators
Identity operators compare the memory locations of two objects. There are two Identity operators
explained below −
[ Show Example ]
Operator Description Example
is Evaluates to true if the variables on either
x is y, here is results in 1 if id(x) equals
side of the operator point to the same
id(y).
object and false otherwise.
is not Evaluates to false if the variables on either
x is not y, here is not results in 1 if id(x) is
side of the operator point to the same
not equal to id(y).
object and true otherwise.
Python Operators Precedence
The following table lists all operators from highest precedence to lowest.
[ Show Example ]
https://www.tutorialspoint.com/python/python_basic_operators.htm 7/9
9/6/22, 4:18 PM Python - Basic Operators
Sr.No. Operator & Description
1
**
Exponentiation (raise to the power)
2
~+-
Complement, unary plus and minus (method names for the last two are +@ and -@)
3
* / % //
Multiply, divide, modulo and floor division
4
+-
Addition and subtraction
5
>> <<
Right and left bitwise shift
6
&
Bitwise 'AND'
7
^|
Bitwise exclusive `OR' and regular `OR'
8
<= < > >=
Comparison operators
9
<> == !=
Equality operators
10
= %= /= //= -= += *= **=
Assignment operators
11
is is not
https://www.tutorialspoint.com/python/python_basic_operators.htm 8/9
9/6/22, 4:18 PM Python - Basic Operators
Identity operators
12
in not in
Membership operators
13
not or and
Logical operators
https://www.tutorialspoint.com/python/python_basic_operators.htm 9/9