最佳答案
Python中的无穷散列包含匹配π的数字:
>>> inf = float('inf')
>>> hash(inf)
314159
>>> int(math.pi*1e5)
314159
这是巧合还是有意为之?