Python字典setdefault()方法

2019-10-16 23:05:48

Python字典setdefault()方法與get()類似,但如果key不存在,則將dict [key] = default設定為預設值。

語法

以下是setdefault()方法的語法 -

dict.keys()

引數

  • key - 這是要搜尋的鍵。
  • default - 這是在沒有找到鍵的情況下則返回此值。

返回值

  • 此方法返回字典中可用的鍵值,如果給定鍵不可用,則返回提供的預設值。

範例

以下範例顯示setdefault()方法的用法 -

#!/usr/bin/python3

dict = {'Name': 'Maxsu', 'Age': 7}
print ("Value : %s" %  dict.setdefault('Age', None))
print ("Value : %s" %  dict.setdefault('Sex', None))
print (dict)

當執行上面的程式,它產生以下結果 -

Value : 7
Value : None
{'Name': 'Maxsu', 'Sex': None, 'Age': 7}