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

python学习笔记Day3

时间:2016-02-01 23:48:58      阅读:239      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!