python-字典判断python字典中key是否存在的

Posted TaiChiLYL

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-字典判断python字典中key是否存在的相关的知识,希望对你有一定的参考价值。

一般有两种通用做法:

第一种方法:使用自带函数实现:

在python的字典的属性方法里面有一个has_key()方法:

[python] view plain copy
  1. #生成一个字典  
  2. d = {‘name‘:Tom, ‘age‘:10, ‘Tel‘:110}  
  3. #打印返回值  
  4. print d.has_key(‘name‘)  
  5. #结果返回True  


第二种方法:使用in方法:

[python] view plain copy
  1. #生成一个字典  
  2. d = {‘name‘:Tom, ‘age‘:10, ‘Tel‘:110}  
  3. #打印返回值,其中d.keys()是列出字典所有的key  
  4. print ‘name’ in d.keys()  
  5. print ‘name‘ in d  
  6. #两个的结果都是返回True  


除了使用in还可以使用not in,判定这个key不存在,使用in要比has_key要快。





以上是关于python-字典判断python字典中key是否存在的的主要内容,如果未能解决你的问题,请参考以下文章

判断python字典中key是否存在的两种方法

python判断字典或元祖中是否包含某个特定key

python判断字典或元祖中是否包含某个特定key

浅谈python 字典对象的 Pythonic 用法

python中判断字典中是否存在某个键

python之字典