python-small-examples

@author jackzhenguo
@desc 
@date 2019/3/4

30 冻结集合  

创建一个不可修改的集合。

In [1]: frozenset([1,1,3,2,3])
Out[1]: frozenset({1, 2, 3})

因为不可修改,所以没有像set那样的addpop方法

[上一个例子](/python-small-examples/md/29.html) [下一个例子](/python-small-examples/md/31.html)