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