Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 409 Bytes

File metadata and controls

33 lines (26 loc) · 409 Bytes

<= (issubset)

Description

Returns a Boolean stating whether the set is contained in the other set.

Syntax

set <= other

other
A set object or expression evaluating to a set.

Return Value

None

Time Complexity

#TODO

Example

>>> {1, 2} <= {0, 1, 2, 3}
True
>>> {1, 2} <= {0, 1,}
False

See also

#TODO