标签: python python-3.x
这种意想不到的行为让我感到惊讶:
>>> a = 256 >>> a is 256 True >>> b = 257 >>> b is 257 False
为什么?