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