Python 关键字 and
定义和用法
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")运行实例»
相关页面
关键字or
,not
也是逻辑运算符。
在Python 运算符教程中阅读有关运算符的更多信息。