不以物喜不以己悲 生活不會突變,,你要做的只是耐心和積累。人這一輩子沒法做太多的事情,,所以每一件都要做得精彩絕倫,。你的時(shí)間有限,做喜歡的事情會令人愉悅,,所以跟隨自己的本心。 正文
描述
Python 字典 dict() 函數(shù)用于創(chuàng)建一個(gè)新的字典,,用法與 Pyhon 字典 update() 方法相似,。
語法
dict() 函數(shù)函數(shù)語法:
參數(shù)說明:
- key/value -- 用于創(chuàng)建字典的鍵/值對,此處可以表示鍵/值對的方法有很多,請看實(shí)例,。
返回值
返回一個(gè)新的字典。
實(shí)例
以下實(shí)例展示了 dict() 函數(shù)的使用方法:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # !/usr/bin/python3
dict0 = dict () # 傳一個(gè)空字典
print ( 'dict0:' , dict0)
dict1 = dict ({ 'three' : 3 , 'four' : 4 }) # 傳一個(gè)字典
print ( 'dict1:' , dict1)
dict2 = dict (five = 5 , six = 6 ) # 傳關(guān)鍵字
print ( 'dict2:' , dict2)
dict3 = dict ([( 'seven' , 7 ), ( 'eight' , 8 )]) # 傳一個(gè)包含一個(gè)或多個(gè)元祖的列表
print ( 'dict3:' , dict3)
dict5 = dict ( zip ([ 'eleven' , 'twelve' ], [ 11 , 12 ])) # 傳一個(gè)zip()函數(shù)
print ( 'dict5:' , dict5)
|
以上實(shí)例輸出結(jié)果為:
1 2 3 4 5 | dict0: {}
dict1: { 'four' : 4 , 'three' : 3 }
dict2: { 'five' : 5 , 'six' : 6 }
dict3: { 'seven' : 7 , 'eight' : 8 }
dict5: { 'twelve' : 12 , 'eleven' : 11 }
|
zip() 函數(shù):http://www.cnblogs.com/wushuaishuai/p/7766470.html
|