英文文档:
<a href="http://www.php.cn/wiki/739.html" target="_blank">hash</a>(object)Return the hash value of the object (if it has one). Hash values are integers. They are used to quickly compare dictionary keys during a dictionary lookup. Numeric values that compare equal have the same hash value (even if they are of different types, as is the case for 1 and 1.0).
说明:
1. 返回对象的哈希值,用整数表示。哈希值在字典查找时,可用于快速比较键的值。
立即学习“Python免费学习笔记(深入)”;
>>> hash('good good study')
10327092562. 相等的数值,即使类型不一致,计算的哈希值是一样的。
>>> 1.0 == 1 True >>> hash(1.0) >>> hash(1) >>> hash(1.0000)
以上就是Python内置hash函数的详细介绍的详细内容,更多请关注php中文网其它相关文章!
python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号