python——刪除任意鍵值對
提問人:楊紫紅發(fā)布時間:2020-11-20
d9 = {1:"one", 2:"two", 3:"three"}
print d9.pop(1) #one
print d9 #{2: 'two', 3: 'three'}
print d9.pop(5, None) #None
try:
d9.pop(5) # raise KeyError
except KeyError, ke:
print "KeyError:", ke #KeyError:5
popitem() ---刪除任意鍵值對,并返回該鍵值對,如果字典為空,則產(chǎn)生異常KeyError
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
點擊加載更多評論>>