Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 484 Bytes

File metadata and controls

35 lines (28 loc) · 484 Bytes

< (issubset proper)

Description

Returns a Boolean stating whether the set is contained in the specified set and that the sets are not equal.

Syntax

set < other

other
A set object or expression evaluating to a set.

Return Value

None

Time Complexity

#TODO

Example

>>> {1, 2} < {1, 2}
False
>>> {1, 2} < {1, 2, 3}
True
>>> {1, 2} < {'frob'}
False

See also

#TODO