Unlike the public web installer, the is not always prominently featured on Torch’s homepage. It’s often:
Still lists the browser and its media-centric features, though it often points to the web installer by default. PortableApps: For those who don't want to install it at all, a portable version exists that can run directly from a folder or thumb drive. A Word of Caution: Security Risks
Вопрос:
Что выведет функция hash() для следующих значений: 1, 0, -1, -2?
Unlike the public web installer, the is not always prominently featured on Torch’s homepage. It’s often:
Still lists the browser and its media-centric features, though it often points to the web installer by default. PortableApps: For those who don't want to install it at all, a portable version exists that can run directly from a folder or thumb drive. A Word of Caution: Security Risks
hash() может показаться незначительной, важно помнить о ней при работе с хэш-функциями и структурами данных, основанных на хэшировании. В большинстве случаев вы не столкнетесь с проблемами, но знание этой детали поможет вам избежать потенциальных ошибок и лучше понимать внутреннее устройство Python.Ключевые выводы:
Для небольших целых чисел в Python используется оптимизация (интернирование).
torch browser offline installer exclusive
hash(x) == x для большинства целых чисел, но hash(-1) == -2 из-за внутренней реализации и для предотвращения коллизий.
Unlike the public web installer, the is not
Это поведение является специфичным для CPython и может отличаться в других реализациях Python (например, PyPy).
Unlike the public web installer
Используйте == для сравнения значений и is для сравнения идентичности объектов.
Надеюсь, теперь эта загадка с hash(-1) стала немного понятнее!
hash(-1) всегда возвращает -2, поэтому hash(-1) == hash(-2).__hash__() в пользовательских классах.