Float Range is a range-like generator for float numbers
Project description
Float Range
Float Range is a range-like generator for float numbers.
Usage
import float_range
for i in float_range.range(10):
print(i, end=' ')
# >>> 0 1 2 3 4 5 6 7 8 9
for i in float_range.range(1, 5, 0.5):
print(i, end=' ')
# >>> 1 1.5 2.0 2.5 3.0 3.5 4.0 4.5
for i in float_range.range(5, 1.5, -0.7):
print(i, end=' ')
# >>> 5 4.3 3.6 2.9 2.2
Installation
Simply
$ pip install float_range
and you are good to go.
P.S.: If installing from outside of a virtualenv you may need to prefix that with sudo though.
Requirements
Tests run against CPython 2.6+ and 3.2+. Also Pypy (2.7) and Pypy3 (3.3) are supported. However it may run smoothly on any Python 2.3+ implementation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
float_range-0.1.3.tar.gz
(1.4 kB
view details)
File details
Details for the file float_range-0.1.3.tar.gz
.
File metadata
- Download URL: float_range-0.1.3.tar.gz
- Upload date:
- Size: 1.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1d10c9ef3576a865709c77b5148dfbb0d89e2348902760b33f469297d3ae0201
|
|
MD5 |
3f2739ea09779a9f11e0709f68e60dc1
|
|
BLAKE2b-256 |
fc2900b479afcf345ef0b3f087685794413f45e78c79a7011055e68f41d3e6e9
|