(记录)初学python篇:五

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(记录)初学python篇:五相关的知识,希望对你有一定的参考价值。

#字典

dict,dict全称dictionary,在其他语言中也称为map,使用键-值(key-value)存储,具有极快的查找速度。


dict的键(value)包含list和tuple,key不可变,key可以是tuple(元组不可变得列表,list可变)

>>> b = {"a":1,"b":"sad" ,"c":(1,["dssd"])}
>>> b
{‘a‘: 1, ‘b‘: ‘sad‘, ‘c‘: (1, [‘dssd‘])}
>>> type(b)
<class ‘dict‘>

#set

set和dict类似,也是一组key的集合,但不存储value。在set中,没有重复的key。创建一个set时,需要提供一个list作为输入集合:


set类型存储为key,所以类型可以加入tuple,list不可加入,写类型为([]),输出则是一个集合。

>>> a=set([1,2,3])
>>> a
{1, 2, 3}
>>> type(a)
<class ‘dict‘>

#例子:

把(1,2,3)和(1,[2,3])放入dict或set中

>>> a=(1,2,3)
>>> type(a)
<class ‘tuple‘>
>>> b=(1,[2,3])
>>> type(b)
<class ‘tuple‘>
>>> c={"w":1,"g":2}
>>> d=set([1,2,3])
>>> type(c)
<class ‘dict‘>
>>> type(d)
<class ‘set‘>
>>> c["a"]=a
>>> a
(1, 2, 3)
>>> c
{‘w‘: 1, ‘g‘: 2, ‘a‘: (1, 2, 3), ‘b‘: (1, 2, 3)}
>>> c["b"]=b
{‘w‘: 1, ‘g‘: 2, ‘a‘: (1, 2, 3), ‘b‘: (1, [2, 3])}
>>> d.add(a)
>>> d
{1, 2, 3, (1, 2, 3)}
>>> d.add(b)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unhashable type: ‘list‘


本文出自 “麻花的博客” 博客,请务必保留此出处http://mahua.blog.51cto.com/11572858/1969209

以上是关于(记录)初学python篇:五的主要内容,如果未能解决你的问题,请参考以下文章

Python代码阅读(第26篇):将列表映射成字典

Python代码阅读(第41篇):矩阵转置

(记录)初学python篇:一

Python代码阅读(第25篇):将多行字符串拆分成列表

Python代码阅读(第40篇):通过两个列表生成字典

Python代码阅读(第13篇):检测列表中的元素是否都一样