import math
from math import pow
gogo = (math.pow(10,100))
print(gogo)
gogo2 = (math.pow(10,1e+100))
print(gogo2)
Getting it overflow issue and have no cool how to extend the range
import math
from math import pow
gogo = (math.pow(10,100))
print(gogo)
gogo2 = (math.pow(10,1e+100))
print(gogo2)
Getting it overflow issue and have no cool how to extend the range