标签:使用 下划线 内存地址 nbsp 存储 缓存 内容 lse 包含
在python中整数(-5到256)和字符串(至包含一个字符或者包含字母、数字或下划线)都会被缓存起来,以便能够重复使用。除了这些整数和字符串以外,其他对象都可以使用赋值语句创建多个实例。这些实例虽然存储的内容是一样的,但是他们的内存地址是不一样的,也就是说他们是不同的对象。实例如下:
>>> a=1
>>> b=1
>>> a is b
True
>>> a=257
>>> b=257
>>> a is b
False
>>> s1="hello word"
>>> s2="hello word"
>>> s1 is s2
False
>>> s1="helloword"
>>> s2="helloword"
>>> s1 is s2
True
标签:使用 下划线 内存地址 nbsp 存储 缓存 内容 lse 包含
原文地址:https://www.cnblogs.com/yangzhen-ahujhc/p/12286441.html