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

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

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

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

'a' in x

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

链接地址: http://www.djcxy.com/p/28877.html

上一篇: How to test if a dictionary contains a specific key?

下一篇: Python: how can I check if the key of an dictionary exists?