Skip to main content

Mathematical rounding for python 3

Project description

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

math-round-0.0.2.tar.gz (22.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page