Dict.has_key()方法
Python 字典(Dictionary) has_key() 函数用于判断键是否存在于字典中,如果键在字典dict里返回true,否则返回false。
has_key()方法语法:dict.has_key(key)
* key -- 要在字典中查找的键。
* 如果键在字典里返回true,否则返回false。
实例:
以下实例展示了 has_key()函数的使用方法:
#!/usr/bin/python
dict = {'Name': 'Zara', 'Age': 7}
print "Value : %s" % dict.has_key('Age')
print "Value : %s" % dict.has_key('Sex')
执行结果:
Value : True
Value : False
另注:
Python 3.X 里不包含 has_key() 函数,被 __contains__(key) 替代:
dict3 = {'name':'z','Age':7,'class':'First'};
print("Value : ",dict3.__contains__('name'))
print("Value : ",dict3.__contains__('sex'))
执行结果:
Value : True
Value : False
参考链接: https://www.runoob.com/python/att-dictionary-has_key.html