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


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


Python pop() 方法从字典中删除一个元素。它删除与指定键关联的元素。

如果字典中存在指定的键,则删除并返回其值。

如果指定的键不存在,则会抛出错误 KeyError。

签名

pop(key[, default])

参数

key:删除与其关联的值的键。

defaults:如果键不存在,则返回默认值。

返回

它删除并返回与指定键关联的值。

让我们看一些 pop() 方法的例子来了解它的函数。

Python字典pop()方法示例1

从字典中弹出元素的简单示例。它返回弹出的值。请参阅下面的示例。

# Python dictionary pop() Method
# Creating a dictionary
inventory = {'shirts':25, 'paints':220, 'shock':525, 'tshirts':217}
# Calling method
element = inventory.pop('shirts')
# Displaying result
print(element)

输出:

25

Python字典pop()方法示例2

如果 key 不存在,则返回错误 KeyError。请参阅下面的示例。

# Python dictionary pop() Method
# Creating a dictionary
inventory = {'shirts':25, 'paints':220, 'shock':525, 'tshirts':217}
# Calling method
element = inventory.pop('shoes')
# Displaying result
print(element)

输出:

KeyError:'shoes'

Python字典pop()方法示例3

如果 key 不存在,我们可以设置默认值以避免错误 KeyError。请参阅示例。

# Python dictionary pop() Method
# Creating a dictionary
inventory = {'shirts':25, 'paints':220, 'shock':525, 'tshirts':217}
# Calling method
element = inventory.pop('shoes',100)
# Displaying result
print(element)

输出:

100

Python字典pop()方法示例4

再看一个例子来了解 pop() 方法的函数。

# Python dictionary pop() Method
# Creating a dictionary
inventory = {'shirts':25, 'paints':220, 'shocks':525, 'tshirts':217}
# Displaying result
print(inventory)
# Pop using default value
p = inventory.pop('shirts')
print("Removed",p,"shirts")
print(inventory)

输出:

{'shirts':25, 'paints':220, 'shocks':525, 'tshirts':217}
Removed 25 shirts
{'paints':220, 'shocks':525, 'tshirts':217}






相关用法


注:本文由纯净天空筛选整理自 Python Dictionary pop() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。