frozenset() 返回一个冻结的集合,冻结后集合不能再添加或删除任何元素。
frozenset() 语法:
class frozenset([iterable])
参数
iterable:可迭代的对象,比如列表、字典、元组等等。
返回值
返回新的 frozenset 对象,如果不提供任何参数,默认会生成空集合。。
实例
>>> num3 = frozenset([1,2,3,4,5]) >>> num3 frozenset({1, 2, 3, 4, 5}) >>> num3.add(0) Traceback (most recent call last): File "<pyshell#124>", line 1, in <module> num3.add(0) AttributeError: 'frozenset' object has no attribute 'add'
未经允许请勿转载:程序喵 » Python3 内置函数 —— frozenset 冻结