Python Function Reference

issuperset
Test whether every element in other is in the set.
Python 3.13
set.issuperset(other)
other
Another set.
Examples
Python 3.13
>>> {1, 2, 3}.issuperset({1, 2})
True