or in python code example
Example 1: or statement python
if x==1 or y==1:
print(x,y)
Example 2: operators in python
Operator Name Example
+ Addition x + y
- Subtraction x - y
* Multiplication x * y
/ Division x / y
% Modulus x % y
** Exponentiation x ** y
// Floor division x // y
Example 3: python or
x = 1
y = 10
if x%2 == 0 or y%2 == 0:
print(x%2)
Example 4: x and y in python
x = 10
y = 12
print('x > y is',x>y)
print('x < y is',x<y)
print('x == y is',x==y)
print('x != y is',x!=y)
print('x >= y is',x>=y)
print('x <= y is',x<=y)
Example 5: or in python
exp1 or exp2
Example 6: logical operator in python
0 and 3
3 and 0
3 and 5