vote up 7 vote down star
2

Is there a way to step between 0 and 1 by 0.1? I thought I could do it like the following but it failed:

for i in range(0, 1, 0.1):
    print i

Instead, it says that the step argument cannot be zero, which it's not.

Thanks.

flag

1  
int(0.1) == 0, so the step actually is zero. It may be unexpected, but it is zero. You might want to restate your question to reflect that fact that it's you didn't expect this. Saying "it's not" is false and misleading. – S.Lott Jan 25 at 13:34

7 Answers

vote up 11 vote down check

Building on 'xrange([start], stop[, step])', you can define a generator that accepts and produces any type you choose (stick to types supporting + and <):

>>> def drange(start, stop, step):
...     r = start
...     while r < stop:
...     	yield r
...     	r += step
...     	
>>> i0=drange(0.0, 1.0, 0.1)
>>> ["%g" % x for x in i0]
['0', '0.1', '0.2', '0.3', '0.4', '0.5', '0.6', '0.7', '0.8', '0.9', '1']
>>>
link|flag
This has roundoff problems. Please look here: code.activestate.com/recipes/66472 – Gorgapor Oct 12 at 20:50
vote up 9 vote down

Python's range() can only do integers, not floating point. In your specific case, you can use a list comprehension instead:

[x * 0.1 for x in range(0, 10)]

(Replace the call to range with that expression.)

For the more general case, you may want to write a custom function or generator.

link|flag
vote up 5 vote down

You can also use the numpy library (which isn't part of standard library but is relatively easy to obtain) which has the arange function:

>>> import numpy as np
>>> np.arange(0,1,0.1)
array([ 0. ,  0.1,  0.2,  0.3,  0.4,  0.5,  0.6,  0.7,  0.8,  0.9])

as well as the linspace function which lets you have control over what happens at the endpoint (non-trivial for floating point numbers when things won't always divide into the correct number of "slices"):

>>> np.linspace(0,1,11)
array([ 0. ,  0.1,  0.2,  0.3,  0.4,  0.5,  0.6,  0.7,  0.8,  0.9,  1. ])
>>> np.linspace(0,1,10,endpoint=False)
array([ 0. ,  0.1,  0.2,  0.3,  0.4,  0.5,  0.6,  0.7,  0.8,  0.9])

link|flag
vote up 3 vote down

Why don't you increase the magnitude of i for the loop and then reduce it when you need it.

for i * 100 in range(0, 100, 10):
    print i / 100.0
link|flag
I think you'll find that range() works off integers, in which case this would be the only solution, using the same function atleast. – Matthew Scharley Jan 25 at 10:33
@cmsjr creative :D Just one little thing: divide by 100.0 to keep Python from truncating the result if you're using Python 2.x. I think in 3.0, it'll work as you've coded it. – Dana Jan 25 at 10:35
Nice, thanks alot, I'll make the edit. – cmsjr Jan 25 at 10:36
vote up 2 vote down

The range() built-in function returns a sequence of integer values, I'm afraid, so you can't use it to do a decimal step.

I'd say just use a while loop:

i = 0.0
while i <= 1.0:
    print i
    i += 0.1

If you're curious, Python is converting your 0.1 to 0, which is why it's telling you the argument can't be zero.

link|flag
vote up 2 vote down

And if you do this often, you might want to save the generated list r

r=map(lambda x: x/10.0,range(0,10))
for i in r:
    print i
link|flag
vote up 1 vote down

The Python Cookbook has a recipe for this: http://code.activestate.com/recipes/66472/

Be sure to check the comments; they include improved versions and discussion of errors (for example, gimel's solution may accumulate errors due to repeated addition of floating point numbers).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.