当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Dictionary popitem()用法及代码示例


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() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。