Error 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 How can i fix this?
+6
Charlie epps
source share1 answer
Use the built-in operator.
2**3000 +18
Marcelo cantos
source share