Python if条件语句是通过一条或多条语句的执行结果(True 或者 False)来决定执行的代码块。本文主要介绍Python if条件中的or。

Python 常用术语

1、if条件中的or

or关键字是一个逻辑运算符,用于组合条件语句:

例如:

判断a是否大于b,或a是否大于c:

a = 220
b = 33
c = 510
if a > b or a > c:
    print("至少有一个条件是True")

相关文档:

Python 条件语句(If else)教程

Python If条件语句

Python If语句缩进

Python if条件语句中elif

Python if条件语句中else

Python 简写 If 语句

Python 简写 If else 语句

Python if条件中的and

Python if条件中的or

Python If条件嵌套

Python if条件语句中使用pass

Python 常用术语

推荐文档