當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Dictionary popitem方法用法及代碼示例


Python 的 dict.popitem() 方法刪除最後插入到字典中的鍵/值對並將其作為元組返回。在版本 3.7 之前,dict.popitem() 將刪除任意鍵/值對。

參數

無參數。

返回值

返回最後作為元組插入字典的鍵/值對。

如果字典為空,則會引發KeyError

例子

基本用法

要從 fruits 中刪除最後插入的鍵/值對並將其作為元組返回:

fruits = {'apple': 'red', 'lemon': 'yellow', 'watermelon': 'green'}
fruits.popitem()



('watermelon', 'green')

KeyError

要從 fruits 中刪除最後插入的鍵/值對並返回它:

fruits = {}
fruits.popitem()



KeyError: 'popitem(): dictionary is empty'

KeyErrorfruits 字典為空而引發,因此我們沒有更多的鍵/值對要刪除。

相關用法


注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python Dictionary | popitem method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。