Python 字典 Dictionary keys()方法

Python 字典 Dictionary keys()方法

Python 字典 DictionaryPython 字典 Dictionary

Python 字典(Dictionary) keys() 函数以列表返回一个字典所有的键。

 

语法

keys()方法语法:

dict.keys()

 

参数

  • NA。

 

返回值

返回一个字典所有的键。

 

实例

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

#!/usr/bin/python

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

print "Value : %s" %  dict.keys()

以上实例输出结果为:

Value : ['Age', 'Name']

Python 字典 DictionaryPython 字典 Dictionary

下一节:Python 字典(Dictionary) setdefault()方法

Python 教程

相关文章