标签: python python-3.x
有人可以向我解释为什么在Python 15 is 15但-15 is not -15?这有什么意义吗?
is
is not
In [1]: -15 is -15 Out[1]: False In [2]: 15 is 15 Out[2]: True
看起来-15是一个实例。