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


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


Python keys() 方法用于从字典中获取所有键。如果字典为空,它返回一个键列表和一个空列表。该方法不带任何参数。该方法的语法如下。

签名

keys()

参数

没有参数

返回

它返回一个键列表。如果字典为空,则无。

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

Python字典keys()方法示例1

让我们首先看一个从字典中获取键的简单示例。

# Python dictionary keys() Method
# Creating a dictionary
product = {'name':'laptop','brand':'hp','price':80000}
# Calling method
p = product.keys()
print(p)

输出:

dict_keys(['name', 'brand', 'price'])

Python字典keys()方法示例2

# Python dictionary keys() Method
# Creating a dictionary
product = {'name':'laptop','brand':'hp','price':80000}
# Iterating using key and value
for p in product.keys():
    if p == 'price' and product[p] > 50000:
        print("product price is too high",)

输出:

product price is too high

Python字典keys()方法示例3

我们可以在我们的python程序中使用这个方法。在这里,我们将它用于一个程序来检查我们的库存状态。

# Python dictionary keys() Method
# Creating a dictionary
inventory = {'apples':25, 'bananas':220, 'oranges':525, 'pears':217}
# Calling method
for akey in inventory.keys():
    if akey == 'bananas' and inventory[akey] > 200:
        print("We have sufficient inventory for the ", akey)

输出:

We have sufficient inventory for the  bananas






相关用法


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