1、and为且,and两边的变量都是true的时候结果是true
如:1)5>3 and 4>2 True
2)5>3 and 4<2 False
and2、or为或,有一个是true的时候结果即为true
如:1)5>3 or 4>2 True
2) 5>3 or 4<2 True
or3、not取反.
如:1)not 5>3 False
2)not 5<3 True
not4、当not和and及or在一起运算时,优先级为是 not > and > or.
not > and > or如果有括号,括号的优先级最高,先运算括号中的结果。
网友评论