python 逻辑运算符包括 and , or , not Python中逻辑运算和数学中的逻辑运算是有区别的,返回的不一定就是布尔值。只有not一定会返回布尔值。 另外要注意的就是:0、0.0、0L、0.0+0.0j、None、False、空字符串、空列表、空元组、空字典,视为False;非空视为True。 python 逻辑运算符的优先级 or < and <not 来源:CSDN作者:Radiation_x链接:https://blog.csdn.net/Radiation_x/article/details/104619718 标签 python 逻辑运算 运算符优先级