use && in python special characters code example
Example 1: // meaning in python
## // Returns the integer value of the quotient
eg 906 / 100 = 9.06
906 // 100 = 9
Example 2: x and y in python
x = 10
y = 12
# Output: x > y is False
print('x > y is',x>y)
# Output: x < y is True
print('x < y is',x<y)
# Output: x == y is False
print('x == y is',x==y)
# Output: x != y is True
print('x != y is',x!=y)
# Output: x >= y is False
print('x >= y is',x>=y)
# Output: x <= y is True
print('x <= y is',x<=y)