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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。