>>> import math
>>> math.pow(2, 3000)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OverflowError: math range error

我该如何解决?

最佳答案

使用内置的运算符。

2**3000

关于python - OverflowError : math range error,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2988634/

10-16 07:30