当前位置: 首页>编程语言>正文

python if not python if not str

not与逻辑判断句if连用,代表not后面的表达式为False的时候,执行冒号后面的语句。比如:
a = False
if not a:   (这里因为a是False,所以not a就是True)
    print "hello"

这里就能够输出结果hello

a = None同理

 

not与逻辑判断句if连用,代表not后面的表达式为False的时候,执行冒号后面的语句。比如:
a = False
if not a:   (这里因为a是False,所以not a就是True)
    print "hello"

这里就能够输出结果hello

a = None同理

 

not与逻辑判断句if连用,代表not后面的表达式为False的时候,执行冒号后面的语句。比如:
a = False
if not a:   (这里因为a是False,所以not a就是True)
    print "hello"

这里就能够输出结果hello

a = None同理

 


https://www.xamrdz.com/lan/5pa1924417.html

相关文章: