Python Operators
Python Operators
Subtraction: subtracts
– x–y
two operands
Multiplication:
* multiplies two x*y
operands
Division (floor):
// divides the first x // y
operand by the second
Comparison Operators
In Python Comparison or Relational operators compares the values. It
either returns True or False according to the condition.
Operator Description Syntax
operand is false
Python Example
a = True
b = False
print(a and b)
print(a or b)
print(not a)
Output
False
True
False
| Bitwise OR x|y
~ Bitwise NOT ~x
if (y in list):
print("y is present in given list")
else:
print("y is NOT present in given list")
Output
x is NOT present in given list
y is present in given list