可能重复:
What is a good way to test if a Key exists in Python Dictionary
测试字典是否包含密钥的最简洁方法是什么?
x = {'a' : 1, 'b' : 2}
if (x.contains_key('a')):
....
答案 0 :(得分:450)
'a' in x
快速搜索会发现一些很好的信息:http://docs.python.org/3/tutorial/datastructures.html#dictionaries