python 筆記——字典

建立

方法一:python

>>> dict1 = {}
>>> dict2 = { 'name' : 'earth' , 'port' : 80 }
>>> dict1, dict2
({}, { 'port' : 80 , 'name' : 'earth' })

方法二:從Python 2.2 版本起,可使用一個工廠方法,傳入一個元素是列表的元組做爲參數框架

>>> fdict = dict (([ 'x' , 1 ], [ 'y' , 2 ]))
>>> fdict
{ 'y' : 2 , 'x' : 1 }

方法三:函數

從Python 2.3 版本起, 能夠用一個很方便的內建方法fromkeys() 來建立一個"默認"字典, 字典中元素具備相同的值 (若是沒有給出, 默認爲None,這個有點像我框架的oneObject方法):spa

>>> ddict = {}.fromkeys(( 'x' , 'y' ), - 1
>>> ddict
{ 'y' : - 1 , 'x' : - 1 }
>>>
>>> edict = {}.fromkeys(( 'foo' , 'bar' ))
>>> edict
{ 'foo' : None , 'bar' : None }

訪問字典中的值

想遍歷一個字典(通常用鍵), 你只須要循環查看它的鍵, 像這樣:code

>>> dict2 = { 'name' : 'earth' , 'port' : 80 }
>>>
>>>> for key in dict2.keys():
... print 'key=%s, value=%s' % (key, dict2[key])
...
key = name, value = earth
key = port, value = 80

從Python 2.2 開始,能夠直接在 for 循環裏遍歷字典。server

>>> dict2 = { 'name' : 'earth' , 'port' : 80 }
>>>
>>>> for key in dict2:
... print 'key=%s, value=%s' % (key, dict2[key])
...
key = name, value = earth
key = port, value = 80

想斷定其是否存在某個鍵值對,可使用has_key()或 in 、 not in 操做符接口

>>> 'server' in dict2 # 或 dict2.has_key('server')
False
>>> 'name' in dict # 或 dict2.has_key('name')
True
>>> dict2[ 'name' ]
'earth'

一個字典中混用數字和字符串的例子:ci

>>> dict3 = {}
>>> dict3[ 1 ] = 'abc'
>>> dict3[ '1' ] = 3.14159
>>> dict3[ 3.2 ] = 'xyz'
>>> dict3
{ 3.2 : 'xyz' , 1 : 'abc' , '1' : 3.14159 }

更新字典

採起覆蓋更新字符串

上例中 dict2['name']='earth';get

更新 dict2['name']='abc';

刪除字典元素和字典

del dict2['name'] # 刪除鍵爲「name」的條目

dict2.clear() # 刪除dict2 中全部的條目

del dict2 # 刪除整個dict2 字典

dict2.pop('name') # 刪除並返回鍵爲「name」的條目

dict2 = { 'name' : 'earth' , 'port' : 80 }
>>> dict2.keys()
[ 'port' , 'name' ]
>>>
>>> dict2.values()
[ 80 , 'earth' ]
>>>
>>> dict2.items()
[( 'port' , 80 ), ( 'name' , 'earth' )]
>>>
>>> for eachKey in dict2.keys():
... print 'dict2 key' , eachKey, 'has value' , dict2[eachKey]
...
dict2 key port has value 80
dict2 key name has value earth

update()方法能夠用來將一個字典的內容添加到另一個字典中

dict3 = { 'server' : 'http' , 'port' : 80 , 'host' : 'venus' }
>>> dict3.clear()
>>> dict3
{}

映射類型相關的函數

>>> dict (x = 1 , y = 2 )
{ 'y' : 2 , 'x' : 1 }
>>> dict8 = dict (x = 1 , y = 2 )
>>> dict8
{ 'y' : 2 , 'x' : 1 }
>>> dict9 = dict ( * * dict8)
>>> dict9
{ 'y' : 2 , 'x' : 1 }
  
dict9 = dict8.copy()

字典內建方法

方法名字 操做
dict.clear() 刪除字典中全部元素
dict.copy() 返回字典(淺複製)的一個副本
dict.fromkeysc(seq,val=None) 建立並返回一個新字典,以seq 中的元素作該字典的鍵,val 作該字典中全部鍵對應的初始值(若是不提供此值,則默認爲None)
dict.get(key,default=None) 對字典dict 中的鍵key,返回它對應的值value,若是字典中不存在此鍵,則返回default 的值(注意,參數default 的默認值爲None)
dict.has_key(key) 若是鍵(key)在字典中存在,返回True,不然返回False. 在Python2.2版本引入in 和not in 後,此方法幾乎已廢棄不用了,但仍提供一個 可工做的接口。
dict.items() 返回一個包含字典中(鍵, 值)對元組的列表
dict.keys() 返回一個包含字典中鍵的列表
dict.values() 返回一個包含字典中全部值的列表
dict.iter() 方法iteritems(), iterkeys(), itervalues()與它們對應的非迭代方法同樣,不一樣的是它們返回一個迭代子,而不是一個列表。
dict.pop(key[, default]) 和方法get()類似,若是字典中key 鍵存在,刪除並返回dict[key],若是key 鍵不存在,且沒有給出default 的值,引起KeyError 異常。
dict.setdefault(key,default=None) 和方法set()類似,若是字典中不存在key 鍵,由dict[key]=default 爲它賦值。
dict.setdefault(key,default=None) 和方法set()類似,若是字典中不存在key 鍵,由dict[key]=default 爲它賦值。
相關文章
相關標籤/搜索