例如:
如果两个语句都为True,则返回True:
x = (5 > 3 and 5 < 10)
print(x)
1、定义和用法
and
关键字是逻辑运算符。
逻辑运算符用于组合条件语句。
如果两个语句都返回True
,则返回值将仅为True
,否则它将返回False
。
2、使用示例
例如:
在if
语句中使用and
关键字:
if 5 > 3 and 5 < 10:
print("Both statements are True")
else:
print("At least one of the statements are False")
3、相关函数
关键字or
和not
也是逻辑运算符。