image.png
a = 1; b = 2; c = 2; not a or b +2 ==c 结果?
(not a ) or ((b + 2) == c)

三元表达式

Java中的三元表达式 result = x>y?x:y

python中的三元表达式 result = x if x>y else y如果x>y为真 就返回x,如果为判断结果为假则返回y