码迷,mamicode.com
首页 > 编程语言 > 详细

Python-杂物

时间:2018-11-28 17:36:05      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:bsp   pytho   条件   语句   结果   print   als   int   一个   

1,and和or

在一个bool and a or b语句中,当bool条件为真时,结果是a;当bool条件为假时,结果是b。

 

a = "heaven"

b = "hell"

c = True and a or b

print c

d = False and a or b

print d

 

输出:

heaven

hell

 

2,

Python-杂物

标签:bsp   pytho   条件   语句   结果   print   als   int   一个   

原文地址:https://www.cnblogs.com/two-peanuts/p/10032670.html

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