VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • Python常见工厂函数用法示例(3)

 

6. set():   生产可变集合

1
2
3
4
5
6
>>> s=set('python')
>>> s
set(['h''o''n''p''t''y'])
>>> s.add(825)#可变集合
>>> s
set(['h''o''n''p''t''y'825])

 

7. frozenset():生成不可变集合

1
2
3
4
5
>>> s=frozenset('python')
>>> s
frozenset(['h''o''n''p''t''y'])
>>> s.add()#不可变集合
AttributeError: 'frozenset' object has no attribute 'add'


相关教程