首页 > 编程语言 > 详细

python学习笔记Day3

时间:2016-02-01 23:46:31      阅读:252      评论:0      收藏:0      [点我收藏+]

set有点:1、访问速度快 2、天生解决了重复问题

tuple与set区别: 元组可重复,set不可重复
创捷集合1

>>> s1.add(‘alex‘)
>>> print(s1)
{‘alex‘}
>>> s1.add(‘alex‘)
>>> print(s1)
{‘alex‘}

创建集合2
>>> set ([‘alex‘,‘eric‘,‘tony‘])
{‘tony‘, ‘eric‘, ‘alex‘}

找出不同,并重建一个新的集合
>>> s1 = set ([‘alex‘,‘eric‘,‘tony‘])
>>> s1.diference([‘alex‘,‘eric‘])
{‘tony‘}

>>> s1 = set ([‘alex‘,‘eric‘,‘tony‘])
>>> s1.difference([‘alex‘,‘eric‘])
{‘tony‘}
>>> s2=s1.difference([‘alex‘,‘eric‘])


>>> s2
{‘tony‘}
>>> print(s2)
{‘tony‘}


difference_update 修改原来的集合提出指定的元素

>>> s1
{‘tony‘, ‘eric‘}
>>> s3 = s1.difference_update([‘tony‘])
>>> s1
{‘eric‘}

pop 从原集合拿走一个元素,同时可以用另一个变量接受这个元素。

>>> s1 = set([‘alex‘,‘eric‘,‘tony‘])
>>> s2 = s1.pop()
>>> s2
‘alex‘
>>> s1
{‘tony‘, ‘eric‘}
>>>

 

 

python学习笔记Day3

原文:http://www.cnblogs.com/luoye00/p/5176452.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!