位置:首頁(yè) > 軟件操作教程 > 編程開發(fā) > Python > 問(wèn)題詳情

python——把dict2的元素加入到dict中去

提問(wèn)人:楊紫紅發(fā)布時(shí)間:2020-11-20

d = {1:"one", 2:"two", 3:"three"}


print d.setdefault(1)  #one

print d.setdefault(5)  #None

print d  #{1: 'one', 2: 'two', 3: 'three', 5: None}

print d.setdefault(6, "six") #six

print d  #{1: 'one', 2: 'two', 3: 'three', 5: None, 6: 'six'}


    update(dict2)  ---把dict2的元素加入到dict中去,鍵字重復(fù)時(shí)會(huì)覆蓋dict中的鍵值

繼續(xù)查找其他問(wèn)題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部