码迷,mamicode.com
首页 > 其他好文 > 详细

None

时间:2016-02-22 15:48:23      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

0 值的整型 / 浮点型、空字符串(‘‘)、空列表([])、 空元组((,))、空字典({})、空集合(set())都等价于 False,但是不等于 None

thing = None
if thing:
    print("It‘s some thing")
else:
    print("It‘s no thing")

if thing is None:
    print("It‘s no thing")  
else: 
    print("It‘s some thing") 

 

None

标签:

原文地址:http://www.cnblogs.com/jzm17173/p/5207179.html

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