首页 > 代码库 > Python内置函数(28)——hash
Python内置函数(28)——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) 1 >>> hash(1) 1 >>> hash(1.0000) 1
Python内置函数(28)——hash
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。