标签:else copy span 图片 试题 col toolbar tle src
一:优先级:()>not>and>or
and:两边都为真才为真
or:一边为真即为真,两边都为假才是假
not:
第一种:前后都是比较条件,混合运算符 (面试题)
print( 3 > 4 or 4 < 3 and 1 == 1 )
print(1 < 2 and 3 < 4 or 1 > 2)
print(2 > 1 and 3 < 4 or 4 > 5 and 2< 1)
print(1 > 2 and 3 < 4 or 4 > 5 and 2 > 1 or 9< 8)
print(1 .> 1 and 3< 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6)
print(not 2 > 1 and 3 < 4 or 4 > 5 and 2 > 1 and 9 >8 or 7 < 6 )
答案:F,T,T,F,F,F
第二种:前后都是数字,得到的结果是数字
x or y :如果x为True,则值是x,else:则值是y
and跟or是相反的
标签:else copy span 图片 试题 col toolbar tle src
原文地址:https://www.cnblogs.com/lianghui-lianghui/p/9053662.html