Python 字典 Dictionary has_key()方法
Python 字典 Dictionary has_key()方法
Python 字典(Dictionary) has_key() 函數(shù)用于判斷鍵是否存在于字典中,如果鍵在字典 dict 里返回 true,否則返回 false。
注意:Python 3.X 不支持該方法。
語(yǔ)法
has_key()方法語(yǔ)法:
dict.has_key(key)
參數(shù)
- key -- 要在字典中查找的鍵。
返回值
如果鍵在字典里返回true,否則返回false。
實(shí)例
以下實(shí)例展示了 has_key()函數(shù)的使用方法:
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7} print "Value : %s" % dict.has_key('Age') print "Value : %s" % dict.has_key('Sex')以上實(shí)例輸出結(jié)果為:
Value : True Value : False
相關(guān)文章
- Python continue 語(yǔ)句
- Python 列表 List
- Python 字典 Dictionary
- Python 多線程
- Python 高級(jí)鏈表
- Python 樹(shù)遍歷算法
- Python3 注釋
- Python3 命名空間
- Python3 作用域
- Python File flush() 方法
- Python os.fchown() 方法
- Python os.ftruncate() 方法
- Python os.mkdir() 方法
- Python os.popen() 方法
- Python os.rename() 方法
- Python os.statvfs() 方法
- Python max()方法
- Python List extend()方法
- Python 字典 Dictionary clear()方法
- Python time mktime()方法