Python boolean comparison and is(Python布尔比较和是)
问题描述
Python 3.6.2 控制台:
Python 3.6.2 console:
>>> 11 > 0 is True
False
但是
>>> 0 is True
False
>>> 11 > False
True
那么,为什么 11 >0 是真
是 假
?
So, why 11 > 0 is True
is False
?
推荐答案
这是一个比较链接 因为 >
和 is
都是比较运算符.
This is an example of comparison chaining since both >
and is
are comparison operators.
比较可以任意链接,例如,x <y <= z
是等价的到 x <y 和 y <= z
,除了 y
只计算一次(但在这两个当 x
x
时根本不计算
被发现是假的).z
y
Comparisons can be chained arbitrarily, e.g.,
x < y <= z
is equivalent tox < y and y <= z
, except thaty
is evaluated only once (but in both casesz
is not evaluated at all whenx < y
is found to be false).
形式上,如果 a, b, c, ..., y, z
是表达式,而 op1, op2, ..., opN
是比较运算符,则 a op1 b op2 c ... y opN z
等价于a op1 b and b op2 c and ... y opN z
,除了每个表达式是最多评估一次.
Formally, if a, b, c, …, y, z
are expressions and op1, op2, …, opN
are
comparison operators, then a op1 b op2 c ... y opN z
is equivalent to
a op1 b and b op2 c and ... y opN z
, except that each expression is
evaluated at most once.
因此,它等价于:
>>> (11 > 0) and (0 is True)
False
这篇关于Python布尔比较和是的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python布尔比较和是
基础教程推荐
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 筛选NumPy数组 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01