當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Dictionary setdefault()用法及代碼示例


setdefault() 方法返回鍵的值(如果鍵在字典中)。如果沒有,它會將帶有值的鍵插入到字典中。

用法:

dict.setdefault(key[, default_value])

參數:

setdefault() 最多接受兩個參數:

  • key- 要在字典中搜索的鍵
  • default_value(可選的) -key有值default_value如果鍵不在字典中,則插入字典。
    如果未提供,則default_value將會None.

返回:

setdefault() 返回:

  • key 的值(如果它在字典中)
  • 如果鍵不在字典中且未指定 default_value,則無
  • default_value 如果 key 不在字典中並且指定了 default_value

示例 1:當鍵在字典中時,setdefault() 如何工作?

person = {'name': 'Phill', 'age': 22}

age = person.setdefault('age')
print('person = ',person)
print('Age = ',age)

輸出

person =  {'name': 'Phill', 'age': 22}
Age =  22

示例 2:當鍵不在字典中時,setdefault() 如何工作?

person = {'name': 'Phill'}

# key is not in the dictionary
salary = person.setdefault('salary')
print('person = ',person)
print('salary = ',salary)

# key is not in the dictionary
# default_value is provided
age = person.setdefault('age', 22)
print('person = ',person)
print('age = ',age)

輸出

person =  {'name': 'Phill', 'salary': None}
salary =  None
person =  {'name': 'Phill', 'age': 22, 'salary': None}
age =  22

相關用法


注:本文由純淨天空篩選整理自 Python Dictionary setdefault()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。