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.
|
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:
Instead, it says that the step argument cannot be zero, which it's not. |
||||
|
Building on 'xrange([start], stop[, step])', you can define a generator that accepts and produces any type you choose (stick to types supporting
|
|||||||
|
|
You can also use the NumPy library (which isn't part of standard library but is relatively easy to obtain) which has the
as well as the
|
||||
|
|
|
Python's range() can only do integers, not floating point. In your specific case, you can use a list comprehension instead:
(Replace the call to range with that expression.) For the more general case, you may want to write a custom function or generator. |
|||||||||||||||
|
|
Increase the magnitude of
|
|||||||
|
|
And if you do this often, you might want to save the generated list
|
|||
|
|
|
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:
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. |
|||
|
|
|
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). |
|||
|
|
in Python 2.7x gives you the result of:
but if you use:
gives you the desired:
|
||||
|
|
|
My versions use the original range function to create multiplicative indices for the shift. This allows same syntax to the original range function. I have made two versions, one using float, and one using Decimal, because I found that in some cases I wanted to avoid the roundoff drift introduced by the floating point arithmetic. It is consistent with empty set results as in range/xrange. Passing only a single numeric value to either function will return the standard range output to the integer ceiling value of the input parameter (so if you gave it 5.5, it would return range(6).) Edit: the code below is now available as package on pypi: Franges
|
||||
|
|
|
Add auto-correction for the possibility of an incorrect sign on step:
|
|||
|
|
|
You can use this function:
|
||||
|
|
|
Similar to R's
Results
|
||||
|
|
|
My solution:
|
||||
|
|
|
Here's a solution using itertools:
|
|||
|
|
|
Here is my solution which works fine with float_range(-1, 0, 0.01) and works without floating point representation errors. It is not very fast, but works fine:
|
|||
|
|
itertools.takewhileanditertools.count. It isn't better thandrangeperformance-wise, though. – Kos Nov 29 '12 at 16:15