python中判断语句或
时间: 2023-09-20 07:12:22 浏览: 84
在 Python 中,判断语句中可以使用逻辑或运算符 "or"。例如,下面是一个使用 "or" 运算符的 if 语句示例:
```
x = 10
if x < 5 or x > 15:
print("x is not between 5 and 15")
else:
print("x is between 5 and 15")
```
在上面的示例中,如果 x 小于 5 或者大于 15,则打印 "x is not between 5 and 15";否则,打印 "x is between 5 and 15"。
阅读全文