6
>>> import math
>>> math.pow(2, 3000)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OverflowError: math range error
我該如何解決?溢出錯誤:數學範圍錯誤
>>> import math
>>> math.pow(2, 3000)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OverflowError: math range error
我該如何解決?溢出錯誤:數學範圍錯誤
使用內置的操作符。
2**3000
這使用大整數。 – 2010-06-08 03:39:07
@Hamish:是的,它的確如此。 – 2010-06-08 07:16:28