黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python 字典 Dictionary keys()方法

Python 字典 Dictionary keys()方法

Python 字典 DictionaryPython 字典 Dictionary

Python 字典(Dictionary) keys() 函數(shù)以列表返回一個(gè)字典所有的鍵。

 

語(yǔ)法

keys()方法語(yǔ)法:

dict.keys()

 

參數(shù)

  • NA。

 

返回值

返回一個(gè)字典所有的鍵。

 

實(shí)例

以下實(shí)例展示了 keys()函數(shù)的使用方法:

#!/usr/bin/python

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

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

以上實(shí)例輸出結(jié)果為:

Value : ['Age', 'Name']

Python 字典 DictionaryPython 字典 Dictionary

下一節(jié):Python 字典(Dictionary) setdefault()方法

Python 教程

相關(guān)文章