Python/ref keyword or
来自菜鸟教程
<languages />
Python或关键字
例
如果其中一个语句为True,则返回True:
x = (5 > 3 or 5 > 10) print(x)
定义和用法
The
or
关键字是逻辑运算符。
逻辑运算符用于组合条件语句。
返回值将是
True
如果其中一条语句返回
True
,否则它将返回
False
.
更多例子
例
使用
or
中的关键字
if
声明:
if 5 > 3 or 5 > 10: print("At least one of the statements are True") else: print("None of the statements are True")
相关页面
关键字
and
,和
not
也是逻辑运算符。
在我们的网站上阅读更多关于运营商的信息 Python运算符教程
.