Course
Simulator
More
Premium
Log in
Python Function Reference
Functions
issuperset
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