Skip to content
New issue

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

Про хэшируемость кортежей #1

Open
pi3c opened this issue May 2, 2023 · 1 comment
Open

Про хэшируемость кортежей #1

pi3c opened this issue May 2, 2023 · 1 comment

Comments

@pi3c
Copy link

pi3c commented May 2, 2023

Дочитал до кортежей и увидел неточность.
Не совсем верное утвердени, что кортежи хэшируемые. Кэш кортежа можно получить, только если и тогда, когда все элементы входящие в него неизменяемые.
например:

Кэшируемый кортеж
t = (1, "gfdg", ('fghh', 55))
print(hash(t))

Аналогичный кортеж, но со списком. Он Не хэшируем
d = (1, 'gjdg', ['fghh', 55])
print(hash(d))

@pi3c
Copy link
Author

pi3c commented May 2, 2023

Screenshot_20230502-094544242

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant