Python札记1:字符串驻留(String Interning)

在Python中操作字符串时,有时可能会遇到一些奇怪的现象,例如下面这个例子: >>> a = "hello" >>> b = "hello" >>> a is b True >>> a = "hello world" >>> b = "hello world" >>> a is b False 你可能会问:为什么会这样呢?答案是Python中有一种称为“字符串驻留(String Internni
相关文章
相关标签/搜索