Python 字典 Dictionary setdefault()方法
Python 字典 Dictionary setdefault()方法
Python 字典 setdefault() 函數(shù)和 get()方法 類(lèi)似, 如果鍵不存在于字典中,將會(huì)添加鍵并將值設(shè)為默認(rèn)值。
語(yǔ)法
setdefault() 方法語(yǔ)法:
dict.setdefault(key, default=None)
參數(shù)
- key -- 查找的鍵值。
- default -- 鍵不存在時(shí),設(shè)置的默認(rèn)鍵值。
返回值
如果字典中包含有給定鍵,則返回該鍵對(duì)應(yīng)的值,否則返回為該鍵設(shè)置的值。
實(shí)例
以下實(shí)例展示了 setdefault() 函數(shù)的使用方法:
#!/usr/bin/python # -*- coding: UTF-8 -*- dict = {'codebaoku': '<a href="http://www.slktour.com" target="_blank">碩編程</a>', 'google': 'Google 搜索'} print "Value : %s" % dict.setdefault('codebaoku', None) print "Value : %s" % dict.setdefault('Taobao', '淘寶')
以上實(shí)例輸出結(jié)果為:
Value : <a href="http://www.slktour.com" target="_blank">碩編程</a> Value : 淘寶
相關(guān)文章
- Python 變量類(lèi)型
- Python 網(wǎng)絡(luò)編程
- Python3 注釋
- Python abs() 函數(shù)
- Python fabs() 函數(shù)
- Python sqrt() 函數(shù)
- Python uniform() 函數(shù)
- 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()方法