>>> a = 12
>>> b = 12
>>> a is b
True
>>> c = 864
>>> d = 864
>>> c is d
False
>>> id(c)
35916592
>>> id(d)
35916576
为什么c和d的地址引用不一样?
桃花长相依
侃侃尔雅