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()用法及代码示例
- Python Dictionary fromkeys()用法及代码示例
- Python Dictionary clear()用法及代码示例
- Python Dictionary update()用法及代码示例
- Python Dictionary pop()用法及代码示例
- Python Dictionary setdefault()用法及代码示例
- Python Dictionary popitem()用法及代码示例
- Python Dictionary has_key()用法及代码示例
- Python Dictionary get()用法及代码示例
- Python Dictionary items()用法及代码示例
- Python Dictionary copy()用法及代码示例
- 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 keys() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。