赞
踩
每个单词(字符串),不夹杂空格或者其他符号,只由大小写字母、数字和下划线组成时,默认开启 intern 机制,共享内存,靠引用计数决定是否销毁。
>>> a = 'HelloWorld'
>>> b = 'HelloWorld'
>>> a is b
True
>>> a = 'Hello World'
>>> b = 'Hello World'
>>> a is b
False
a = 'HelloWorld'
b = 'HelloWorld'
print(a is b)
a = 'Hello World'
b = 'Hello World'
print(a is b)
# 运行结果:
True
True
a = 'HelloWorld'
def test():
b = 'HelloWorld'
print(a is b)
if __name__ == '__main__':
test()
# 运行结果:
True
a = 'Hello World'
def test():
b = 'Hello World'
print(a is b)
if __name__ == '__main__':
test()
# 运行结果:
False
通过以上案例,为何会得出这样的一个结果呢?
首先我们来说说 Python 程序中的代码块。所谓代码块是程序的一个最小的基本执行单位,一个模块文件、一个函数体、一个类、交互式命令中的单行代码都叫做一个代码块。
当字符串处于不同代码块中时,符合字符串格式要求的话,就会开启 intern 机制,在 Pycharm 等集成开发环境中,此机制对应于 LEGB 不同的作用域才会开启。
L:local 本地 局部作用域
E:嵌套作用域(外部函数变量)
G:global 全局作用域
B:built-in 内建作用域(input、print、int 等都属于内建作用域)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。