Python代码没有按预期工作?

时间:2018-05-05 22:24:05

标签: python

预期的行为是在{29}遇到2949时打印2949 is the magic number!,但循环不会。循环似乎从19开始,然后跳到513920 - 这是为什么?

magicNumber = 2949

for x in range(0, 100000000):
    if (x is magicNumber):
        print(x, "is the magic number!")

0 个答案:

没有答案