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

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)視頻回答
回復(fù)(0)
返回頂部