码迷,mamicode.com
首页 > 编程语言 > 详细

Python集合

时间:2018-07-04 16:43:39      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:shell   error   str   函数   module   ace   直接   tee   不可变   

>>> num = {1, 2, 3, 4, 5, 5, 4, 3, 2, 1}

>>> num

{1, 2, 3, 4, 5}        #集合中所有元素都具有唯一性


创建一个集合

  1. 直接把一堆元素用花括号括起来

  2. 使用set()工厂函数


>>> num1 = [1, 2, 3, 4, 6, 5, 5, 9, 7,1,7]

>>> num1 = list(set(num1))

>>> num1

[1, 2, 3, 4, 5, 6, 7, 9]


add()    #集合可以使用add添加元素

>>> num1 = {1, 2, 3, 4, 6, }

>>> num1.add(7)

>>> num1

{1, 2, 3, 4, 6, 7}


remove()

>>> num1

{1, 2, 3, 4, 6, 7}

>>> num1.remove(4)

>>> num1

{1, 2, 3, 6, 7}


不可变集合

frozenset()

>>> num2 = frozenset([1,2,3,4,5])

>>> num2.add(9)

Traceback (most recent call last):

  File "<pyshell#83>", line 1, in <module>

    num2.add(9)

AttributeError: 'frozenset' object has no attribute 'add'








Python集合

标签:shell   error   str   函数   module   ace   直接   tee   不可变   

原文地址:http://blog.51cto.com/12686555/2136171

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!