Python中 if not 用法

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

这里就能够输出结果hello

a = None同理

原文链接:https://blog.csdn.net/m0_37843198/article/details/78890523?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.control

原文地址:https://www.cnblogs.com/swxj/p/14407813.html