== (is equal)

Description

Returns a Boolean stating whether the set has the same elements as the other set.

Syntax

set == other

other
A set object or expression evaluating to a set.

Return Value

set

Time Complexity

#TODO

Example

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

See also

#TODO