概述
python return逻辑判断表达式(21)
发布时间:2020-05-27 14:19:35
来源:51CTO
阅读:216
作者:qq5d6f345f0205e
一.return逻辑判断表达式 and
and:遇假则假,所以前面为假就不执行和判断后面直接返回假;前面为真则继续判断执行后面直到表达式结束或者出现假为止;1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29# !usr/bin/env python
# -*- coding:utf-8 _*-
"""
@Author:何以解忧
@Blog(个人博客地址): shuopython.com
@WeChat Official Account(微信公众号):猿说python
@Github:www.github.com
@File:python_return.py
@Time:2019/10/6 19:48
@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
"""
deffun1():
# 所有条件都为真,返回最后一个值
return"21"andTrue
deffun2():
# 检测所有表达式,直到遇到假为止,并返回假
return54and1andTrueand0
deffun3():
# 遇到真,继续后面的判断,直到遇到假为止,如果遇见假直接返回,不再继续判断
return1andTrueandFalseand54and0
print(fun1())
print(fun2())
print(fun3())
输出结果:1
2
3True
0
False
小敲门:
1.如果有假的表达式:返回值为第一个假表达式的结果;
2.如果没有假的表达式:返回值为最后一个真表达式的结果;
二.return逻辑判断表达式 or
or:遇真则真,所以前面为真就不执行和判断后面;前面为假则继续判断执行后面直到表达式结束或者出现真为止;1
2
3
4
5
6
7
8
9
10
11
12
13
14
15deffun1():
# 所有条件都为真,返回第一个真的表达式
return"21"orTrue
deffun2():
# 所有条件都为假,直到遇到真为止,并返回真,没有真则返回最后一个假
return""orFalseor0
deffun3():
# 直到遇到真为止,并返回真,不在继续后面的判断
return0orTrueorFalseor54or0
print(fun1())
print(fun2())
print(fun3())
输出结果:1
2
321
0
True
小敲门:
1.如果有真的表达式:返回值为第一个真表达式的结果;
2.如果没有真的表达式:返回值为最后一个假表达式的结果;
三.return逻辑判断表达式 and和or配合使用
and和or配合使用:其实并没有先后顺序,表达式重前往后依次执行,上一个表达式的结果作为下一个表达式的开始;1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47deffun1():
'''
动作分解:
第一步:"21" and True 返回结果 True
第二步:True or 1 返回结果 True
注意第二步 True or 1 中的 True 是第一步返回的结果并不是表达式中的True
'''
return"21"andTrueor1#等价:return (("21" and True) or 1)
deffun2():
'''
动作分解:
第一步:"" or False 返回结果 False
第二步:False and 0 返回结果 False
注意第二步 False and 0 中的 False 是第一步返回的结果并不是表达式中的 False
'''
return""orFalseand0#等价:return (("" or False) and 0)
deffun3():
'''
动作分解:
第一步:0 or True 返回结果 True
第二步:True and False 返回结果 False
第三步:False or 54 返回结果 54
第四步:54 and 0 返回结果 0
注意:上一步的结果作为下一步的开始
'''
return0orTrueandFalseor54and0#等价:return ((((0 or True) and False) or 54) and 0)
deffun4():
'''
动作分解:
第一步:0 and True and False 返回结果 0
第二步:0 or 54 返回结果 54
第三步:54 and 0 返回结果 0
注意:上一步的结果作为下一步的开始
'''
return0andTrueandFalseor54and0#等价:return (((0 and True and False) or 54) and 0)
print(fun1())
print(fun2())
print(fun3())
print(fun4())
输出结果:1
2
3
4True
False
0
0
四.重点总结
其实作为一个普通函数直接返回字符串或者其他数据类型就完了,为何非要这样费力不讨好?学习学习,学习是一个过程,我想我们应该过程中成长,不然即使写了一万次hello world又有何用?return逻辑判断表达式 /字典推导式 / 列表推导式 都是在各种开源项目中频繁使用得写法,这往往也是编程水平的一种提现。
猜你喜欢:
1.python函数
2.python匿名函数
3.python函数不定长参数*argc,**kargcs
转载请注明:猿说Python » python return逻辑判断表达式
最后
以上就是狂野泥猴桃为你收集整理的python中返回值为ture表达式_python return逻辑判断表达式(21)的全部内容,希望文章能够帮你解决python中返回值为ture表达式_python return逻辑判断表达式(21)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复