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

[python]Python 中 if not 用法

时间:2020-02-14 16:58:11      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:not   bsp   one   none   语句   print   col   color   元组   

在python 判断语句中 None, False, 空字符串"", 0, 空列表[], 空字典{}, 空元组()都相当于 False
not None == not False == not ‘‘ == not 0 == not [] == not {} == not ()

 

需要注意的是‘0‘这个进行判断返回的是true

def test(val):
    if not val:
        print not
    else:
        print yes

test(0)
test(None)

test(0)


if not 0:
    print 1111

返回

not
not
yes
1111

 

[python]Python 中 if not 用法

标签:not   bsp   one   none   语句   print   col   color   元组   

原文地址:https://www.cnblogs.com/taoshihan/p/12307530.html

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