Python popitem() 方法从字典中删除一个元素。它删除任意元素并返回其值。如果字典为空,则返回错误 KeyError。该方法的语法如下。
签名
popitem()
参数
没有参数
返回
它返回弹出的元素。
让我们看一些 popitem() 方法的例子来了解它的函数。
Python字典popitem()方法示例1
让我们先看一个使用 popitem() 方法删除元素的简单示例。
# Python dictionary popitem() Method
# Creating a dictionary
inventory = {'shirts':25, 'paints':220, 'shocks':525, 'tshirts':217}
# Displaying result
print(inventory)
p = inventory.popitem()
print("Removed",p)
print(inventory)
输出:
{'shirts':25, 'paints':220, 'shocks':525, 'tshirts':217} Removed ('tshirts', 217) {'shirts':25, 'paints':220, 'shocks':525}
Python字典popitem()方法示例2
如果字典为空,则返回错误 KeyError。请参阅下面的示例。
# Python dictionary popitem() Method
# Creating a dictionary
inventory = {}
# Displaying result
print(inventory)
p = inventory.popitem()
print("Removed",p)
print(inventory)
输出:
KeyError:'popitem():dictionary is empty'
Python字典popitem()方法示例3
在此示例中,我们将删除和更新字典以了解此方法的函数。
# Python dictionary popitem() Method
# Creating a dictionary
inventory = {'shirts':25, 'paints':220, 'shocks':525, 'tshirts':217}
# Displaying result
print(inventory)
p = inventory.popitem()
print("Removed",p)
print(inventory)
inventory.update({'pajama':117})
print(inventory)
输出:
{'shirts':25, 'paints':220, 'shocks':525, 'tshirts':217} Removed ('tshirts', 217) {'shirts':25, 'paints':220, 'shocks':525} {'shirts':25, 'paints':220, 'shocks':525, 'pajama':117}
相关用法
- Python Dictionary popitem()用法及代码示例
- Python Dictionary pop()用法及代码示例
- Python Dictionary fromkeys()用法及代码示例
- Python Dictionary clear()用法及代码示例
- Python Dictionary update()用法及代码示例
- Python Dictionary setdefault()用法及代码示例
- Python Dictionary has_key()用法及代码示例
- Python Dictionary get()用法及代码示例
- Python Dictionary items()用法及代码示例
- Python Dictionary copy()用法及代码示例
- Python Dictionary keys()用法及代码示例
- Python Dictionary values()用法及代码示例
- Python Decimal shift()用法及代码示例
- Python Decimal next_plus()用法及代码示例
- Python Decimal logical_and()用法及代码示例
- Python Decimal rotate()用法及代码示例
- Python Decimal max_mag()用法及代码示例
- Python Datetime.replace()用法及代码示例
- Python Decimal as_integer_ratio()用法及代码示例
- Python DataFrame.to_excel()用法及代码示例
注:本文由纯净天空筛选整理自 Python Dictionary popitem() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。