Python Operators
Python Operators
PYTHON OPERATORS
Operator ●
Operator is used to operate the operands
Arithmetic Relational
Operators Operators
Logical
Operators
PYTHON OPERATORS
Arithmetic Operators
+ Addition
- Subtraction
* Multiplication
/ Division
% Modulo
// Floor Division
** Exponent
PYTHON OPERATORS
Relational Operators
> Greater than
>= Greater than or equals to
< Less than
<= Less than or equals to
== Comparison Equals to
!= Not Equals to
PYTHON OPERATORS
Logical Operators
AND Logical AND
or Logical Or
notLogical Not
PYTHON OPERATORS
Bitwise Operators
& Binary AND
| Binary Or
^ Binary Xor
~ Complement
>> Right Shift
<< Left Shift
PYTHON OPERATORS
PYTHON OPERATORS
MEMBER SHIP OPERATORS
in
not in
PYTHON OPERATORS
IDENTITY OPERATORS
is
is not