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.090948.com" target="_blank">碩編程</a>', 'google': 'Google 搜索'} print "Value : %s" % dict.setdefault('codebaoku', None) print "Value : %s" % dict.setdefault('Taobao', '淘寶')
以上實例輸出結果為:
Value : <a href="http://www.090948.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()方法