python学习30300509逻辑运算短路原则
Posted wangyunpeng888888
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习30300509逻辑运算短路原则相关的知识,希望对你有一定的参考价值。
短路原则
对于and 如果条件1为假,and后面的条件短路,不用判断一定为假
对于or,如果条件1为真,or 后面的条件短路,不用判断一定为真
not not true or false and not true
true
not not true为真,or的短路原则(false and not true)被短路
true or true and false
true
解析:true 为ture,根据or 短路原则,true and false被短路不计算就是true
以上是关于python学习30300509逻辑运算短路原则的主要内容,如果未能解决你的问题,请参考以下文章