首页
编程
java
php
前端
首页
编程
java
php
前端
0 and 1 or not 2<True 这个要怎么看啊
第四题0 and 1 or not 2<True 这个要怎么看啊
0 and 1 or not 2<True 这个要怎么看啊
是这样的顺序
(0 and 1) or ( not (2 < True))
2 < True不成立,not取反,所以 or 的右侧表达式成立。因此整个表达式就是True
点击展开全文