Python or 关键字
定义和用法
or 关键字是逻辑运算符。
逻辑运算符用于组合条件语句。
如果其中一条语句返回 True,则返回值为 True,否则返回 False。
更多实例
实例
在 if 语句中使用 or 关键字:
if 5 > 3 or 5 > 10: print("At least one of the statements are True") else: print("None of the statements are True")
or 关键字是逻辑运算符。
逻辑运算符用于组合条件语句。
如果其中一条语句返回 True,则返回值为 True,否则返回 False。
在 if 语句中使用 or 关键字:
if 5 > 3 or 5 > 10: print("At least one of the statements are True") else: print("None of the statements are True")