是否可以用花括号创建冻结集?
Is it possible to create frozen sets with curly braces?
看来只能使用 frozenset()
构造函数创建 frozenset
。
这是真的还是有文本方式来创建冻结集?我找不到任何证据 in the docs.
你链接上面的一句话就是答案(强调我的):
Non-empty sets (not frozensets) can be created by placing a
comma-separated list of elements within braces, for example: {'jack', 'sjoerd'}
, in addition to the set
constructor.
所以简而言之,不,没有办法做到这一点
看来只能使用 frozenset()
构造函数创建 frozenset
。
这是真的还是有文本方式来创建冻结集?我找不到任何证据 in the docs.
你链接上面的一句话就是答案(强调我的):
Non-empty sets (not frozensets) can be created by placing a comma-separated list of elements within braces, for example:
{'jack', 'sjoerd'}
, in addition to theset
constructor.
所以简而言之,不,没有办法做到这一点