在python2中对于一个dict,可以用
dict.has_key(key_name)
检测键是否存在
在python3中这样使用会报错AttributeError: 'dict' object has no attribute 'has_key'
python3 用法:
words = {'a':1, 'b':2 , 'c':3}
'a' in words
- key存在返回True
key不存在返回False
在python2中对于一个dict,可以用dict.has_key(key_name)
检测键是否存在
在python3中这样使用会报错AttributeError: 'dict' object has no attribute 'has_key'
python3 用法:
words = {'a':1, 'b':2 , 'c':3}
'a' in words