python中的逻辑运算符
时间: 2023-10-23 11:25:17 浏览: 92
测量程序编制 - python C6运算符:逻辑运算符.pptx
Python 中的逻辑运算符有三种:and(与)、or(或)和not(非)。这些运算符通常用于组合和比较逻辑值(True或False)。下面是它们的用法:
- and:如果两个表达式都为True,则返回True;否则返回False。
- or:如果两个表达式中至少有一个为True,则返回True;否则返回False。
- not:如果一个表达式为True,则返回False;如果一个表达式为False,则返回True。
以下是一个简单的示例,演示了逻辑运算符的用法:
```
x = 5
y = 10
z = 15
# and
if x < y and y < z:
print("Both conditions are True")
# or
if x > y or y > z:
print("At least one condition is True")
# not
if not x > y:
print("x is not greater than y")
```
输出:
```
Both conditions are True
At least one condition is True
x is not greater than y
```
阅读全文