Python keys()

python 中的keys()函数返回一个视图对象,该对象以列表形式显示字典中的所有键。

 **dict.keys()** 

键()参数:

keys()不接受任何参数。当字典更新时,它将反映出进行这些更改的键。

键()返回值

如果我们对字典进行任何更改,它也会反映视图对象。如果字典是空的,它会返回一个空列表。

| 投入 | 返回值 | | 字典 | 查看对象 |

Python 中key()方法的示例

示例keys()在 Python 中是如何工作的?

 persondet = {'name': 'Albert', 'age': 30, 'salary': 5000.0}
print(persondet.keys())
 empty_dict
print(empty_dict.keys()) 

输出:

 dict_keys(['name', 'salary', 'age'])
dict_keys([]) 

示例 2:字典更新时键()的工作?

 persondet = {'name': 'Albert', 'age': 30, }

print('Before dictionary is updated')
keys = persondet.keys()
print(keys)

# adding an element to the dictionary
persondet.update({'salary': 5000.0})
print('\nAfter dictionary is updated')
print(keys) 

输出:

 Before dictionary is updated
dict_keys(['name', 'age'])

After dictionary is updated
dict_keys(['name', 'age', 'salary']) 

本文链接:https://my.lmcjl.com/post/6614.html

展开阅读全文

4 评论

留下您的评论.