OverflowError: math range error
Posted
by Charlie Epps
on Stack Overflow
See other posts from Stack Overflow
or by Charlie Epps
Published on 2010-06-07T10:19:48Z
Indexed on
2010/06/07
10:22 UTC
Read the original article
Hit count: 263
>>> 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? thanx.
© Stack Overflow or respective owner