码迷,mamicode.com
首页 > 编程语言 > 详细

Python内置函数(28)——hash

时间:2016-10-29 11:38:39      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:equal   相等   during   快速   哈希   int   pytho   ase   sed   

英文文档:

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

标签:equal   相等   during   快速   哈希   int   pytho   ase   sed   

原文地址:http://www.cnblogs.com/sesshoumaru/p/6010180.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!