python的布尔取反
时间: 2024-04-02 13:30:14 浏览: 114
python 实现按位取反
3星 · 编辑精心推荐
在Python中,布尔取反可以通过使用逻辑运算符"not"来实现。当对一个布尔值进行取反操作时,如果原始值为True,则取反后为False;如果原始值为False,则取反后为True。
例如:
```python
x = True
y = not x
print(y) # 输出 False
z = False
w = not z
print(w) # 输出 True
```
阅读全文