math-round

Mathematical rounding for python 3


Keywords
math, round, math-round
License
MIT
Install
pip install math-round==0.0.3.post1

Documentation

Mathematical rounding in Python 3

This package is designed for using mathematical rounding. This type of rounding was used by function - round () in python 2.

Quick start

  1. Install this package using pip:

    pip install math-round
    
  2. Import mround function from math_round package.

  3. Use like this:

    mround(12.123) # - > 12
    mround(12.123, 1) # -> 12.1
    
  4. To replace the standard function - round () in the whole project, write the following in the main __init__ file:

    import builtins
    from math_round import mround
    
    
    builtins.round = mround