逻辑判断
Posted npdpx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了逻辑判断相关的知识,希望对你有一定的参考价值。
print(‘1‘,6 or 2 > 1) print(‘2‘,3 or 2 < 1) print(‘3‘,0 or 5 < 4) print(‘4‘,5 < 4 or 3) print(‘5‘,2 > 1 or 6) print(‘6‘,3 and 2 > 1) print(‘7‘,0 and 3 > 1) print(‘8‘,2 > 1 and 3) print(‘9‘,3 > 1 and 0) print(‘10‘,3 > 1 and 2 or 2 < 3 and 3 and 4 or 3 > 2)
以上是关于逻辑判断的主要内容,如果未能解决你的问题,请参考以下文章