dict' object has no attribut
2017-12-22 本文已影响290人
腿长袖子短
-
在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