Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 364 Bytes

File metadata and controls

33 lines (26 loc) · 364 Bytes

< less than

Description

Returns a Boolean stating whether one expression is less than the other.

Syntax

A < B

A
Any valid object.
B
Any valid object.

Return Value

bool

Time Complexity

#TODO

Example

>>> 10 < 5
False

See also

#TODO