爲Python的hash
功能的摘要文檔讀取:Perl的Python等價於哈希(或Java的hashCode)函數?
Type: builtin_function_or_method
String form: <built-in function hash>
Namespace: Python builtin
Docstring:
hash(object) -> integer
Return a hash value for the object. Two objects with the same value have
the same hash value. The reverse is not necessarily true, but likely.
(例如,當施加到文檔字符串的hash
函數上述返回整數3071661466461282235.)
有Perl等同功能?
編輯:我正在尋找不需要返回任何參數Python的hash
函數相同的值。
您是否在尋找* any * hashing函數或者專門給出與Python相同的結果(至少對於原始值) – Quentin
@Quentin:謝謝您的提問;我在帖子中添加了一個說明。簡而言之,與Python的'hash'協議是沒有必要的(儘管,現在你提到它,它會很好,但只是作爲一個令人愉快的獎金,根本不需要)。 – kjo
'sub hash {return unpack(「%32W *」,「@_」)}'因爲python函數只對字符串有意義嗎? http://stackoverflow.com/a/793835/223226 –