You should specify a step in np.arange() like this:
for i in np.aragne(1e-70, 1e-10, 1e-20):
But note, if your step is bigger than values range, you'll get only a start of your range. So in case np.arange(1e-70, 1e-10, step=1e-6)
you'll have only one iteration with i=1e-70
.
Or if you want to have N equally spaced numbers, you can use np.linspace():
for i in np.linspace(1e-70, 1e-10, 1000): # 1000 numbers in [1e-70, 1e-10]
P.S. Looking at your question, it seem's that you want to get a sequence like [1e-70, 1e-69, 1e-68, ...]
instead of [1e-70, 1e-70+step, 1e-70+2*step, ...]
.
In it is so, you can do it like this:
for i in np.logspace(-70, -10, 61):