手机
当前位置:查字典教程网 >脚本专栏 >python >使用Python的判断语句模拟三目运算
使用Python的判断语句模拟三目运算
摘要:下面说的和三目运算有点相似,但又不一样,实在不知道该如何拟定标题,先就是这个标题吧,大家都知道python中没有三目运算,但是and/or有...

下面说的和三目运算有点相似,但又不一样,实在不知道该如何拟定标题,先就是这个标题吧,大家都知道python中没有三目运算,但是and/or有点类似三目运算:

and/or

单独使用表示逻辑关系与和或,也可以组和使用,用法如下

and

and前后如果某一个值为假(False, '', [], {}, None…)则返回第一个假值 如果所有值都为真则返回最后一个真值

or

如果or任意一个值为真,则立刻返回这个值 如果所有值都为假,则or返回最后一个假值

例子

result = 'test' and True # result = True result = 'test' and 'ortest' # result = ortest result = False and 'ortest' # result = False result = '' and None # result = '' result = '' or "Hall" # result = Hall result = False or None # result = None result = 'test' or 'nottest' # result = test

使用单行if else 模拟三目运算

result if True / False else fresult if为真时候结果为result,为假的时候结果为fresult

result = 'test' if True else 'not test' # result = 'test' result = 'test' if False else 'not test' # result = 'not test'

【使用Python的判断语句模拟三目运算】相关文章:

Python的词法分析与语法分析

python中的列表推导浅析

Python程序语言快速上手教程

Python中的并发编程实例

使用go和python递归删除.ds store文件的方法

用Python编程实现语音控制电脑

Python 的 with 语句详解

从零学python系列之从文件读取和保存数据

python 控制语句

python判断windows隐藏文件的方法

精品推荐
分类导航