轻松上手,快乐学习!

Python 关键字 and


实例

如果两个语句都为True,则返回True:

x = (5 > 3 and 5 < 10)

print(x)

运行实例»

定义和用法

and关键字是一个逻辑运算符。 逻辑运算符用于组合条件语句。 仅在两个语句都返回True时才返回True,否则返回False

更多例子

实例

if语句中使用and关键字  :
if 5 > 3 and 5 < 10:
    print("Both statements are True")
else:
    print("At least one of the statements are False")
运行实例»

相关页面

关键字ornot也是逻辑运算符。 在Python 运算符教程中阅读有关运算符的更多信息。