page contents

假设你使用的是官方的CPython,说出下面代码的运行结果。

轩辕小不懂 发布于 2022-03-05 14:17
阅读 580
收藏 0
分类:Python开发

a, b, c, d = 1110001000
print(a is b, c is d)

def foo():
    e = 1000
    f = 1000
    print(e is f, e is d)
    g = 1
    print(g is a)

foo()

3226
Nen
Nen
- 程序员

True False

True False

True

请先 登录 后评论