英文文档:
class frozenset
([反復可能frozenset
([iterable])
Return a new frozenset
object, optionally with elements taken from iterable. frozenset
is a built-in class. See frozenset
and Set Types — set, frozenset for documentation about this class.
For other containers see the built-in set
, list
, tuple
, and dict
classes, as well as the collections
])
frozenset
から取得した要素も使用できます。 frozenset
は組み込みクラスです。 「frozenset
とセット タイプ - このクラスに関するドキュメントについては set、frozenset を参照してください。
その他についてはコンテナでは、組み込みのセット
list
タプル
dict
クラスと、collections
module.
>>> a = frozenset(range(10)) >>> a frozenset({0, 1, 2, 3, 4, 5, 6, 7, 8, 9}) >>> b = frozenset('I am a Pythoner') >>> b frozenset({'y', 'I', ' ', 'r', 't', 'm', 'h', 'o', 'a', 'e', 'n', 'P'})🎜🎜2. パラメータを入力しない場合、生成された空の不可能な集合。
以上がPythonの組み込みfrozenset関数の詳細な紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。