码迷,mamicode.com
首页 > 编程语言 > 详细

Python中字典的has_key方法在3.4版本中改为in

时间:2014-12-11 13:41:34      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   sp   on   div   log   bs   

1 >>> a={1:a,2:b}
2 >>> 1 in a
3 True
4 >>> a in a
5 False
6 >>> 2 in a
7 True
8 >>> 

即可以判断某个键是否存在于字典中;

1 >>> a.has_key(1)
2 Traceback (most recent call last):
3   File "<pyshell#27>", line 1, in <module>
4     a.has_key(1)
5 AttributeError: ‘dict‘ object has no attribute ‘has_key‘

 

Python中字典的has_key方法在3.4版本中改为in

标签:style   blog   color   os   sp   on   div   log   bs   

原文地址:http://www.cnblogs.com/yuzhuwei/p/4157278.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!