Python3 字典 keys() 方法

转载:

     https://www.w3cschool.cn/python3/python3-att-dictionary-keys.html

 

Python3 字典 keys() 方法

由 rowline 创建, 最后一次修改 2016-07-22

Python3 字典 keys() 方法


描述

Python 字典 keys() 方法以列表返回一个字典所有的键。

语法

keys()方法语法:

dict.keys()

参数

  • NA。

返回值

返回一个字典所有的键。

实例

以下实例展示了 keys() 方法的使用方法:

#!/usr/bin/python3

dict = {'Name': 'W3CSchool', 'Age': 7}

print ("字典所有的键为 : %s" %  dict.keys())

以上实例输出结果为:

字典所有的键为 : dict_keys(['Age', 'Name'])

你可能感兴趣的:(Python)