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'
KeyError
因 fruits
字典为空而引发,因此我们没有更多的键/值对要删除。
相关用法
- Python Dictionary popitem()用法及代码示例
- Python Dictionary pop()用法及代码示例
- Python Dictionary pop方法用法及代码示例
- Python Dictionary fromkeys方法用法及代码示例
- Python Dictionary setdefault方法用法及代码示例
- Python Dictionary update()用法及代码示例
- Python Dictionary setdefault()用法及代码示例
- Python Dictionary clear()用法及代码示例
- Python Dictionary get方法用法及代码示例
- Python Dictionary values方法用法及代码示例
- Python Dictionary items方法用法及代码示例
- Python Dictionary keys方法用法及代码示例
- Python Dictionary has_key()用法及代码示例
- Python Dictionary get()用法及代码示例
- Python Dictionary items()用法及代码示例
- Python Dictionary update方法用法及代码示例
- Python Dictionary copy()用法及代码示例
- Python Dictionary clear方法用法及代码示例
- Python Dictionary copy方法用法及代码示例
- Python Dictionary values()用法及代码示例
- Python Dictionary keys()用法及代码示例
- Python Dictionary fromkeys()用法及代码示例
- Python Django Distance用法及代码示例
- Python Django Distance.unit_attname用法及代码示例
- Python Django Distance.__getattr__用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python Dictionary | popitem method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。