Course
Simulator
More
Premium
Log in
Python Function Reference
Functions
frozenset
frozenset
Return a new frozenset object, optionally with elements taken from iterable.
Python 3.13
frozenset
(
iterable
)
Examples
Python 3.13
>>
>
frozenset
(
[
1
,
2
,
2
,
3
]
)
frozenset
(
{
1
,
2
,
3
}
)