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 clear()用法及代碼示例
- Python Dictionary update()用法及代碼示例
- Python Dictionary pop()用法及代碼示例
- Python Dictionary popitem()用法及代碼示例
- Python Dictionary has_key()用法及代碼示例
- Python Dictionary get()用法及代碼示例
- Python Dictionary items()用法及代碼示例
- Python Dictionary copy()用法及代碼示例
- Python Dictionary keys()用法及代碼示例
- Python Dictionary values()用法及代碼示例
- Python Dictionary fromkeys()用法及代碼示例
- Python Decimal shift()用法及代碼示例
- Python Decimal next_plus()用法及代碼示例
- Python Decimal rotate()用法及代碼示例
- Python Decimal max_mag()用法及代碼示例
- Python Datetime.replace()用法及代碼示例
- Python DateTime轉integer用法及代碼示例
- Python Decimal as_integer_ratio()用法及代碼示例
- Python Decimal is_subnormal()用法及代碼示例
- Python DataFrame.to_excel()用法及代碼示例
注:本文由純淨天空篩選整理自 Python Dictionary setdefault()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。