如何testing字典是否包含特定的密钥?

可能重复:
testingPython Dictionary中是否存在Key的好方法是什么?

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

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

并快速search揭示了一些关于它的好信息: http : //docs.python.org/3/tutorial/datastructures.html#dictionaries