number utility
1.0.0
The number-utility module makes it simple for you to do number manipulation and perform various operations on numbers.
You can install the module using pip as shown below.
pip install number-utilityConsider the following examples :
from number_utility import *
num1 = 12
num2 = 60
print(gcd(num1, num2))
#Output - 12from number_utility import *
start = 2
end = 10
print(generate_primes(start, end))
#Output - [2, 3, 5, 7]To install number-utility, along with the tools you need to develop and run tests. Run the following command :
$ pip install -e .[dev]For running the tests, type the following command :
py.testPlease use the GitHub issue tracker to submit bugs or request features.
Copyright Vaidhyanathan S M, 2021
Distributed under the terms of the MIT license, number-utility is free and open source software.