I want to calculate this simple equation in python3
from math import e
N*e**(r*t)
where e is the neper number and the rest is integer variables.
when I run my script it complains OverflowError: (34, 'Numerical result out of range')
What went wrong?