ScanSkill

<= (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.

Syntax

A <= B

Here,

  • A: Any valid object.
  • B: Any valid object.

Examples

>>> 13 <= 7
False
>>> 7 <= 7
True
>>> 7 <= 13
True