Skip to content

shuklabhay/NumberWrangler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NumberWrangler

Slightly or massively variate numbers within a certain range and based on one central point.

Instructions

  1. Install:
pip install NumberWrangler
  1. Variate numbers
# Import Package
from NumberWrangler import Wrangler

#Create a Variate object for simplicity
Variate = Wrangler.Variate

# Variate a number close to 12
print(Variate(number=12))
  1. Success!

Documentation and Examples

# Import Package
from NumberWrangler import Wrangler

# Create a Variate object
Variate = Wrangler.Variate

# Create a number close to 12
print(Variate(number=12))

# Create a number far from 12
print(Variate(number=12, multiplier=200))

# Create a number close to 12 rounded to the fifth place
print(Variate(number=12, round=5))

# Create a number close to but more than 12
print(Variate(number=12, add=True))

# Create a number close to but less than 12
print(Variate(number=12, subtr=True))

# Now use any combination of these methods!
# Generates a new number after each use.

About

Python package for slightly or massively variating numbers within a certain range and based on one central point.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages