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

and or判别

时间:2015-05-22 21:05:31      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

and 和 or涉及到短路运算,python把0,‘‘,none看做false,其余是true,

对于a and b,若a是true则,返回b,若a是false则返回a(因为a是true还需要判断b,a是false则不再需要判断b)

对a or b ,如a是true则返回a,若a是false则返回b

def average(*args):
    return len(args) and sum(args)/float(len(args)) or 0.0

print average()
print average(1, 2)
print average(1, 2, 2, 3, 4)

此题求平均数,就是很好的逻辑

注:*args代表可变参数

另外if也是短路运算

 

and or判别

标签:

原文地址:http://www.cnblogs.com/alex21/p/4523181.html

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