python内置hash函数的详细介绍

英文文档:

hash(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. 返回对象的哈希值,用整数表示。哈希值在字典查找时,可用于快速比较键的值。

>>> hash(‘good good study’)
1032709256

  2. 相等的数值,即使类型不一致,计算的哈希值是一样的。

>>> 1.0 == 1
true
>>> hash(1.0)
>>> hash(1)
>>> hash(1.0000)

以上就是python内置hash函数的详细介绍的详细内容,更多请关注 第一php社区 其它相关文章!

Posted in 未分类

发表评论