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

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

提問人:楊紫紅發(fā)布時間: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ù)時會覆蓋dict中的鍵值

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

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