Lesser Than Or Equal¶
Lesser Than Or Equal (<=
) can be used to find if a
is lesser than or equal to b
.
Syntax
operand1 <= operand2
Example
a <= b
1 <= 2
# true
3 <= 3
# true
4 <= 3
# false