开发者

OverflowError: math range error

开发者 https://www.devze.com 2023-01-02 07:50 出处:网络
开发者_开发技巧>>> import math >>> math.pow(2, 3000) Traceback (most recent call last):
开发者_开发技巧>>> import math
>>> math.pow(2, 3000)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OverflowError: math range error

How can I fix it?


Use the built-in operator.

2**3000
0

精彩评论

暂无评论...
验证码 换一张
取 消