标签: hash python-2.x
在MIT OpenCourseWare YouTube lecture on hashing中,教授给出了两个在Python中导致哈希冲突的字符串示例:
>>> hash('\0B') 64 >>> hash('\0\0C') 64
为什么会这样?