Home » Backend » Python » <= (less than or equal)
This <= (less than or equal) relational operator returns a Boolean value stating whether one expression is less than or equal to the other.
<=
A <= B
Here,
>>> 13 <= 7 False >>> 7 <= 7 True >>> 7 <= 13 True