精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python 字典 Dictionary get()方法

Python 字典 Dictionary get()方法

Python 字典 DictionaryPython 字典 Dictionary

Python 字典(Dictionary) get() 函數返回指定鍵的值。

 

語法

get()方法語法:

dict.get(key, default=None)

 

參數

  • key -- 字典中要查找的鍵。
  • default -- 如果指定鍵的值不存在時,返回該默認值。

 

返回值

返回指定鍵的值,如果鍵不在字典中返回默認值 None 或者設置的默認值。

 

實例

以下實例展示了 get()函數的使用方法:

#!/usr/bin/python

dict = {'Name': 'codebaoku', 'Age': 27}

print "Value : %s" %  dict.get('Age')
print "Value : %s" %  dict.get('Sex', "Not Available")    

以上實例輸出結果為:

Value : 27
Value : Not Available

Python 字典 DictionaryPython 字典 Dictionary

下一節:Python 字典(Dictionary) has_key()方法

Python 教程

相關文章