usefulpy

The most useful functions in everyday life


Keywords
math, dummy, useful
License
MIT
Install
pip install usefulpy==0.7

Documentation

UsefulPy

The most useful functions in everyday life

Installation

Use the package manager pip to install usefulpy.

pip install usefulpy

Usage

from usefulpy.math import is_negative, is_ten

is_ten(10) # returns 'True'
is_ten(9) # returns 'False'

is_negative(-1) # returns 'True'
is_negative(1) # returns 'False'
is_negative(0) # returns 'False'

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT