python字典的(Dictionary)setdefault()方法
描述:
python字典中setdefault()函数个get()方法类似,如果键不存在于字典中,将会添加键并将值设为默认值
语法:
dict.setdefault(key, default=Nine)
参数:
- key --- 查找的键值
- default ---- 当键不存在时,设置的默认值
返回值:
- 如果字典中包含了给定键,则返回该键对应的值,否则返回该键设置的值。
python字典中setdefault()函数个get()方法类似,如果键不存在于字典中,将会添加键并将值设为默认值
dict.setdefault(key, default=Nine)