Python 字典 Dictionary setdefault()方法
Python 字典 Dictionary setdefault()方法
Python 字典 setdefault() 函数和 get()方法 类似, 如果键不存在于字典中,将会添加键并将值设为默认值。
语法
setdefault() 方法语法:
dict.setdefault(key, default=None)
参数
- key -- 查找的键值。
- default -- 键不存在时,设置的默认键值。
返回值
如果字典中包含有给定键,则返回该键对应的值,否则返回为该键设置的值。
实例
以下实例展示了 setdefault() 函数的使用方法:
#!/usr/bin/python # -*- coding: UTF-8 -*- dict = {'codebaoku': '<a href="http://www.yapf.com" target="_blank">硕编程</a>', 'google': 'Google 搜索'} print "Value : %s" % dict.setdefault('codebaoku', None) print "Value : %s" % dict.setdefault('Taobao', '淘宝')
以上实例输出结果为:
Value : <a href="http://www.yapf.com" target="_blank">硕编程</a> Value : 淘宝
相关文章
- Python 变量类型
- Python 网络编程
- Python3 注释
- Python abs() 函数
- Python fabs() 函数
- Python sqrt() 函数
- Python uniform() 函数
- Python File isatty() 方法
- Python File seek() 方法
- Python os.chroot() 方法
- Python os.fchown() 方法
- Python os.lchflags() 方法
- Python os.rename() 方法
- Python isdigit()方法
- Python maketrans()方法
- Python rindex()方法
- Python 字典 Dictionary has_key()方法
- Python 字典 Dictionary items()方法
- Python 字典 Dictionary pop() 方法
- Python time localtime()方法