Skip to content

Current python 3's round function uses Banker's rounding, this package will help you to round off numbers the classical way.

License

Notifications You must be signed in to change notification settings

rohitxsh/PyClassicRound

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PyClassicRound

The current implementation of round() function in Python 3 uses Banker's rounding i.e integers are rounded to the nearest even integer, this package allows you to round off numbers the classical way.

Downloads

Installation

PyClassicRound has no dependencies.

> pip install PyClassicRound

Usage (example)

> from PyClassicRound import classic_round

> classic_round(2.55, 1) #outputs 2.6 whereas python 3's round() outputs 2.5

OR

> from PyClassicRound import classic_round as cround

> cround(2.55, 1) #outputs 2.6 whereas python 3's round() outputs 2.5

Parameters

  • Number that needs to be rounded off
  • Upto how many decimal places (optional) (defaults to 2 decimal points (Hundredths Place))

Input parameters can be in any format i.e. integer, float, string etc.

Output will be:

  • integer: if decimal point is 0
  • on successful operation: float
  • None: if the input value cannot be resolved / rounded off for ex. strings -> ("", " ", "abc")

License

MIT

About

Current python 3's round function uses Banker's rounding, this package will help you to round off numbers the classical way.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages