关于python:如何测试字典是否包含特定的键?

How to test if a dictionary contains a specific key?

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
What is a good way to test if a Key exists in Python Dictionary

测试字典是否包含键最干净的方法是什么?

1
2
3
x = {'a' : 1, 'b' : 2}
if (x.contains_key('a')):
    ....


1
'a' in x

快速搜索会显示一些关于它的好信息:http://docs.python.org/3/tutorial/datastructures.html字典