Skip to content

AlbertFarkhutdinov/math_round_af

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

math_round_af

GitHub repo size PyPI version GitHub contributors GitHub stars GitHub forks GitHub licence

math_round_af is a Python package that allows to get mathematically rounded floating numbers.

Prerequisites

Before you begin, ensure you have installed the latest version of Python.

Installing math_round_af

To install math_round_af, follow these steps:

Linux and macOS:

pip3 install math-round-af

Windows:

pip install math-round-af

Using math_round_af

There are examples of how to use math_round_af:

>>> from math_round_af import get_rounded_number
>>> get_rounded_number(0.4)
0.0
>>> get_rounded_number(0.5)
1.0
>>> get_rounded_number(-0.4)
0.0
>>> get_rounded_number(-0.5)
-1.0
>>> get_rounded_number(3.142, 0)
3.0
>>> get_rounded_number(3.142, 1)
3.1
>>> get_rounded_number(3.142, 2)
3.14

Contributing to math_round_af

To contribute to math_round_af, follow these steps:

  1. Fork this repository.
  2. Create a branch: git checkout -b <branch_name>.
  3. Make your changes and commit them: git commit -m '<commit_message>'
  4. Push to the original branch: git push origin <project_name>/<location>
  5. Create the pull request.

Alternatively see the GitHub documentation on creating a pull request.

Contributors

Contact

If you want to contact me you can reach me at albertfarhutdinov@gmail.com.

License

This project uses the following license: MIT License.

About

Python package for mathematical rounding.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages