码迷,mamicode.com
首页 > 其他好文 > 详细

面试题

时间:2018-05-17 23:16:09      阅读:195      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!