We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
That's not a issue with the project but a question for you about a snippet that could be in the README.
I know another case which I think is related with your "hidden memory" snippet, but I can't understand why it happens.
>>> x = 'a'*20 >>> y = 'a'*20 >>> x is y True >>> x = 'a'*21 >>> y = 'a'*21 >>> x is y False
And then, if we create directly a string with more than 20 equals characters:
>>> x = 'aaaaaaaaaaaaaaaaaaaaaaaaa' >>> y = 'aaaaaaaaaaaaaaaaaaaaaaaaa' >>> x is y True
It seems that they are identical.
Do you know why it happens?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
@noviluni I hope this answer and comment from SO will answer your question.
Sorry, something went wrong.
hey, yeah, really interesting, thanks @abdulniyaspm!
No branches or pull requests
That's not a issue with the project but a question for you about a snippet that could be in the README.
I know another case which I think is related with your "hidden memory" snippet, but I can't understand why it happens.
And then, if we create directly a string with more than 20 equals characters:
It seems that they are identical.
Do you know why it happens?
Thanks in advance!
The text was updated successfully, but these errors were encountered: