Course
Simulator
More
Premium
Log in
Python Function Reference
Functions
issubset
issubset
Test whether every element in the set is in other.
Python 3.13
set
.
issubset
(
other
)
other
Another set.
Examples
Python 3.13
>>
>
{
1
,
2
}
.
issubset
(
{
1
,
2
,
3
}
)
True