Python'作为脚本运行并在终端上运行时是'运营商行为差异'

时间:2016-02-13 10:28:53

标签: python-2.7

我在python中遇到了'is'的不同行为。

n = 50000
if n is 50000 :   #comparison is success
    print "Its 50k" #Holds true

切换到python'终端'(命令提示符)

>>> n = 50000
>>> n is 50000
False

为什么行为不同? 版本:2.7.5 +

0 个答案:

没有答案