最佳答案
可能的复制品:
对于整数 ,Python 运算符的行为出乎意料
今天我尝试调试我的项目,经过几个小时的分析,我得到了这个:
>>> (0-6) is -6
False
但是,
>>> (0-5) is -5
True
你能解释一下为什么吗? 也许这是某种错误或者非常奇怪的行为。
> Python 2.7.3 (default, Apr 24 2012, 00:00:54) [GCC 4.7.0 20120414 (prerelease)] on linux2
>>> type(0-6)
<type 'int'>
>>> type(-6)
<type 'int'>
>>> type((0-6) is -6)
<type 'bool'>
>>>