Chris Angelico <[email protected]>: > On Mon, Mar 24, 2014 at 11:35 AM, <[email protected]> wrote: >> I'm trying to create a for loop that starts at 100 and goes to 10Mllion. > > That sounds like a logarithmic scale.
How about:
for i in [ 100, 1000, 10000, 100000, 1000000, 10000000, 100000000 ]:
...
Marko
--
https://mail.python.org/mailman/listinfo/python-list
