鉴于:
>>> d = {'a': 1, 'b': 2}
以下哪种是检查 是否'a'在 的最佳方法d?
'a'
d
>>> 'a' in d True >>> d.has_key('a') True
in绝对更加 Python 化。
事实上has_key()在 Python 3.x 中已被删除。