Returns a Boolean stating whether the set contains the specified set or iterable.
set. issuperset(iterable)
- iterable
- Required. Iterable to be compared against the set.
bool
#TODO
If the iterable is empty, returns True.
>>> {0, 1, 2}.issuperset([1])
True
>>> {0, 1, 2}.issuperset([0, 1])
True
>>> {0, 1, 2}.issuperset([2, 3])
False
>>> {0, 1, 2}.issuperset(())
True#TODO