python中不可变集合

 

1、

>>> a = {1,2,3}
>>> a
{1, 2, 3}
>>> type(a)
<class 'set'>
>>> a.add(4)
>>> a
{1, 2, 3, 4}
>>> b = frozenset({1,2,3})    ## 不可变集合
>>> b
frozenset({1, 2, 3})
>>> type(b)
<class 'frozenset'>
>>> b.add(4)
Traceback (most recent call last):
  File "<pyshell#845>", line 1, in <module>
    b.add(4)
AttributeError: 'frozenset' object has no attribute 'add'
>>> c = frozenset(a)     ## 不可变集合
>>> c
frozenset({1, 2, 3, 4})
>>> c.add(4)
Traceback (most recent call last):
  File "<pyshell#848>", line 1, in <module>
    c.add(4)
AttributeError: 'frozenset' object has no attribute 'add'

 

posted @ 2021-03-03 11:54  小鲨鱼2018  阅读(260)  评论(0编辑  收藏  举报