Skip to content

Franges adds support for floating point and fixed precision (Decimal) range generator functions.

Notifications You must be signed in to change notification settings

nisanharamati/franges

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Franges

Franges adds support for floating point and fixed precision (Decimal) range generator functions.

Usage

#!/usr/bin/env python

from franges import drange
from franges import frange

for x in drange(0,2,0.1, precision = 6):
print(x)
for x in frange(0,2,0.1):
print(x)

list(drange(0,1,0.1, 6)) # [0, 0.1, 0.2, ... , 0.9]
list(frange(1,0,-0.2)) # [1.0, 0.8, 0.6, 0.3999999999999999, 0.19999999999999996]
list(drange(1,0,-0.2,6)) # [1.0, 0.8, 0.6, 0.4, 0.2]

Contributors

Nisan Haramati hanisan@gmail.com

About

Franges adds support for floating point and fixed precision (Decimal) range generator functions.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages