如何测试字典是否包含特定密钥?

时间:2011-03-15 13:54:25

标签: python

  

可能重复:
  What is a good way to test if a Key exists in Python Dictionary

测试字典是否包含密钥的最简洁方法是什么?

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

1 个答案:

答案 0 :(得分:450)

'a' in x

快速搜索会发现一些很好的信息:http://docs.python.org/3/tutorial/datastructures.html#dictionaries