Answers for "why does python do string interning automatically"

CSS
0

string interning in python

>>> import sys>>> c = sys.intern('Y'*4097)>>> d = sys.intern('Y'*4097)>>> c is dTrue
Posted by: Guest on May-11-2021

Code answers related to "why does python do string interning automatically"

Browse Popular Code Answers by Language