Alando

在 Python3 里面, dict.has_key() 被移除了。

改成用 in 或者 not in

例如:

>>> dict = {'Name': 'Zara', 'Age': 7}
>>> print ('Height' in dict)
False
>>> print ('Height' not in dict)
True

Ps:用 in 来判断键是否在字典里面,比 not in 要快。

相关文章:Python3 字典 in 操作符