python中a<b<c是什么意思?
In python, what is the meaning of a<b<c?
if a[start] <= target < a[mid]
和a[start] <= target and target<a[mid] and a[start] < a[mid]
一样吗? (我认为不是,但在视觉上看起来两者是一样的)这在引擎盖下是如何工作的?在 SO 上搜索,但找不到答案。
if a[start] <= target < a[mid]:
本质上[*]与
相同
if a[start] <= target and target < a[mid]:
(如果为真,则 a[start] < a[mid]
,因为 <=
应该是可传递的。)
[*] 有一个微妙之处不适用于您的情况,但值得了解。链接形式只对中间表达式求值一次,而扩展形式对它求值两次。如果中间表达式的计算成本很高或有一些副作用(例如在屏幕上打印某些内容),这可能很重要。
相关文档:https://docs.python.org/3/reference/expressions.html#comparisons
if a[start] <= target < a[mid]
和a[start] <= target and target<a[mid] and a[start] < a[mid]
一样吗? (我认为不是,但在视觉上看起来两者是一样的)这在引擎盖下是如何工作的?在 SO 上搜索,但找不到答案。
if a[start] <= target < a[mid]:
本质上[*]与
相同if a[start] <= target and target < a[mid]:
(如果为真,则 a[start] < a[mid]
,因为 <=
应该是可传递的。)
[*] 有一个微妙之处不适用于您的情况,但值得了解。链接形式只对中间表达式求值一次,而扩展形式对它求值两次。如果中间表达式的计算成本很高或有一些副作用(例如在屏幕上打印某些内容),这可能很重要。
相关文档:https://docs.python.org/3/reference/expressions.html#comparisons