1、使用dict()函數(shù),通過(guò)其他映射(比如其他字典)或者鍵,值對(duì)的序列建立字典。
dict1 = dict(a='a', b='b', t='t') # 傳入關(guān)鍵字
print(dict1)
dict2 = dict(zip(['one', 'two', 'three'], [1, 2, 3])) # 映射函數(shù)方式來(lái)構(gòu)造字典
print(dict2)
dict3 = dict([('one', 1), ('two', 2), ('three', 3)]) # 可迭代對(duì)象方式來(lái)構(gòu)造字典
print(dict3)
2、使用fromkeys()函數(shù),只用來(lái)創(chuàng)建新字典,不負(fù)責(zé)保存。
當(dāng)通過(guò)一個(gè)字典來(lái)調(diào)用 fromkeys 方法時(shí),如果需要后續(xù)使用一定記得給他復(fù)制給其他的變量。
dict3 = dict.fromkeys(['name','age'])
print(dict3)
dict4 = dict.fromkeys(['name','age'],10)
print(dict4)
實(shí)例擴(kuò)展:
代碼:字典示例
people = {
'libai':{'phone':'189','addr':'jiangxi'},'lilei':{'phone':'180','adder':'hunan'},
'lihong':{'phone':'152','adder':'hubei'},'liming':{'phone':'153','adder':'tianjing'},
'licheng':{'phone':'154','adder':'beijing'}}
name = input('name:')
if name in people: print("{}'s phone number is {}, address is {}."
.format(name,people[name]['phone'],people[name]['adder']))
#實(shí)際運(yùn)行
#name:liming
#liming's phone number is 153, address is tianjing.
#個(gè)人感覺(jué)書(shū)中的代碼寫(xiě)的比較繁瑣,初學(xué)者看起來(lái)可能會(huì)比較吃力,重新寫(xiě)了比較簡(jiǎn)單的版本供參考。
到此這篇關(guān)于python用函數(shù)創(chuàng)造字典的實(shí)例講解的文章就介紹到這了,更多相關(guān)python如何用函數(shù)創(chuàng)造字典內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- Python中使用items()方法返回字典元素對(duì)的教程
- Python中dictionary items()系列函數(shù)的用法實(shí)例
- 淺談Python的字典鍵名可以是哪些類(lèi)型
- python字典的元素訪問(wèn)實(shí)例詳解
- python字典遍歷數(shù)據(jù)的具體做法
- Python字典中items()函數(shù)案例詳解