For enquiries call:

Phone

+1-469-442-0620

April flash sale-mobile

HomeBlogProgrammingHow to Round Numbers in Python? With Examples

How to Round Numbers in Python? With Examples

Published
23rd Apr, 2024
Views
view count loader
Read it in
26 Mins
In this article
    How to Round Numbers in Python? With Examples

    While you are dealing with data, sometimes you may come across a biased dataset. In statistics, bias is whereby the expected value of the results differs from the true underlying quantitative parameter being estimated. Working with such data can be dangerous and can lead you to incorrect conclusions. To learn more about Python round function and various other concepts of Python, go through our Python Tutorials or enroll in our Python Programming for beginners courses. Also, click here to learn about sys.argv command line argument. 

    There are many types of biases such as selection bias, reporting bias, sampling bias and so on. Similarly, rounding bias is related to numeric data. In this article we will see the following:

    • Why is it important to know the ways to round numbers in Python
    • How to use various strategies to round numbers
    • How data is affected by rounding it
    • How to use NumPy arrays and Pandas DataFrames to round numbers

    Let us first learn about Python’s built-in rounding process. Also, read about Self in Python here!

    What is Python Built-in round() Function?

    Python Programming offers a built-in round() function which rounds off a number to the given number of digits and makes rounding of numbers easier. The function round() accepts two numeric arguments, n and n digits then returns the number n after rounding it to digits. If the number of digits is not provided for round-off, the function rounds off the number n to the nearest integer.

    Suppose you want to round off a number, say 4.5. It will be rounded to the nearest whole number, which is 5. However, the number 4.74 will be rounded to one decimal place to give 4.7.

    It is important to quickly and readily round numbers while you are working with round floats that have many decimal places. The inbuilt Python function round() makes it simple and easy.

    Syntax of Python Round Function

    round(number, number of digits)

    The parameters in the round() function are:

    ParametersDescription
    numbernumber to be rounded
    number of digits (Optional)number of digits up to which the given number is to be rounded.

    The second parameter is optional. In case, if it is missing then Python round() function returns:

    • For an integer, 12, it rounds off to 12
    • For a decimal number, if the last digit after the decimal point is >=5 it will round off to the next whole number, and if <5 it will round off to the floor integer

    round() Return Value

    The round() function returns the

    • nearest integer to the given number if ndigits is not provided
    • number rounded off to the ndigits digits if ndigits is provided

    Example of Python Round Function

    A. Python round() function if the Second parameter is Missing

    Let us look into an example where the second parameter is missing.

    # For integers
    print(round(12))
     
    # For floating point
    print(round(21.7))  
    print(round(21.4))

    The output will be:

    12
    22
    21

    B. Python round function if the Second Parameter is Present

    Now, if the second parameter is present.

    # when the (ndigit+1)th digit is =5 
    print(round(5.465, 2)) 
      
    # when the (ndigit+1)th digit is >=5 
    print(round(5.476, 2))   
      
    # when the (ndigit+1)th digit is <5 
    print(round(5.473, 2))

    The output will be:

    5.46 
    5.48 
    5.47

    A Practical Application of round() Function

    There is always a mismatch between fractions and decimals. The rounding of functions can be used to handle such cases. While converting fractions to decimals, we generally get many digits after the decimal point such as for ⅙ we get 0.166666667 but we use either two or three digits to the right of the decimal point. This is where the round function saves the day.

    For example:

    x = 1/3
    print(x)
    print(round(x, 2))

    The output will be:

    0.3333333333333333 
    0.33

    Some errors and exceptions associated with this function 

    Example 1:

    print(round("x", 2))

    The output will be:

    ---------------------------------------------------------------------------
    TypeError                                 Traceback (most recent call last)
    <ipython-input-9-6fc428ecf419> in <module>()
    ----> 1 print(round("x", 2))
    TypeError: type str doesn't define __round__ method

    Example 2:

    print(round(1.5))
    print(round(2))
    print(round(2.5))

    The output will be:

    2
    2
    2

    The function round() rounds 1.5 up to 2, and 2.5 down to 2. This is not a bug, the round() function behaves this way. In this article you will learn a few other ways to round a number. Let us look at the variety of methods to round a number.

    Diverse Methods for Rounding Numbers in Python

    There are many ways to round a number with its own advantages and disadvantages. For better understanding, these diverse methods for rounding beginner learners can take an Advanced Python course as well. But before that, here we will learn some of the techniques for rounding a number.

    There are various methods on how to Round Numbers in Python; here, we are explaining some generally used methods that we used to round() function.

    • Basic but Biased Rounding Methods
      • Truncation
      • Rounding Up in Python
      • Python Rounding Down
    • Better Rounding Methods in Python
      • Rounding Half Up in Python
      • Rounding Half Down
      • Rounding Half Away From Zero
      • Rounding Half To Even

    1. Truncation

    Truncation, as the name suggests, means to shorten things. It is one of the simplest methods to round a number which involves truncating a number to a given number of digits. This method replaces each digit after a given position with 0. Let us look into some examples.

    ValueTruncated ToResult
    19.345Tens place10
    19.345Ones place19
    19.345Tenths place19.3
    19.345Hundredths place19.34

    The truncate() function can be used for positive as well as negative numbers:

    >>> truncate(19.5)
    19.0
    
    >>> truncate(-2.8521)
    -2.8
    
    >>> truncate(2.8252)
    2.82

    The truncate() function can also be used to truncate digits towards the left of the decimal point by passing a negative number.

    >>> truncate(235.7, -1)
    230.0
    
    >>> truncate(-1936.37-3)
    -1000.0

    When a positive number is truncated, we are basically rounding it down. Similarly, when we truncate a negative number, the number is rounded up. Let us look at the various rounding methods.

    2. Rounding Up in Python

    There is another strategy called “rounding up” where a number is rounded up to a specified number of digits. For example:

    ValueRound Up ToResult
    12.345Tens place20
    18.345Ones place19
    18.345Tenths place18.4
    18.345Hundredths place18.35

    The term ceiling is used in mathematics to explain the nearest integer which is greater than or equal to a particularly given number. In Python, for “rounding up” we use two functions namely,

    1. ceil() function, and
    2. math() function

    A non-integer number lies between two consecutive integers. For example, considering the number 5.2, this will lie between 4 and 5. Here, the ceiling is the higher endpoint of the interval, whereas the floor is the lower one. Therefore, the ceiling of 5.2 is 5, and the floor of 5.2 is 4. However, the ceiling of 5 is 5.

    In Python, the function to implement the ceiling function is math.ceil() function. It always returns the closest integer which is greater than or equal to its input.

    >>> import math
    
    >>> math.ceil(5.2)
    6
    
    >>> math.ceil(5)
    5
    
    >>> math.ceil(-0.5)
    0

    If you notice you will see that the ceiling of -0.5 is 0, and not -1.
    Let us look into a short code to implement the “rounding up” strategy using the round_up() function:

    def round_up(n, decimals=0): 
        multiplier = 10 ** decimals 
        return math.ceil(n * multiplier) / multiplier

    Let’s look at how the round_up() function works with various inputs:

    >>> round_up(3.1)
    4.0
    
    >>> round_up(3.231)
    3.3
    
    >>> round_up(3.5432)
    3.55

    You can pass negative values to decimals, just like we did in truncation.

    >>> round_up(32.45, -1)
    40.0
    
    >>> round_up(3352-2)
    3400

    You can follow the diagram below to understand round-up and how to round down in Python. Py Round up to the right and down to the left.

    The diagram which helps to better understand Rounding Up and Rounding Down in Python

    Rounding up always rounds a number to the right on the number line, and rounding down always rounds a number to the left on the number line.

    3. Python Rounding Down

    Similar to rounding up we have another strategy called rounding down where

    ValueRounded Down ToResult
    19.345Tens place10
    19.345Ones place19
    19.345Tenths place19.3
    19.345Hundredths place19.34

    In Python, rounding down can be implemented using a similar algorithm as we truncate or round up. Firstly you will have to shift the decimal point and then round an integer. Lastly, shift the decimal point back.

    Math.ceil() is used to round up to the ceiling of the number once the decimal point is shifted. For “rounding down” we first need to round the floor of the number once the decimal point is shifted.

    >>> math.floor(1.2)
    1
    
    >>> math.floor(-0.5)
    -1

    Here’s the definition of round_down():

    def round_down(n, decimals=0):
        multiplier = 10 ** decimals
    return math.floor(n * multiplier) / multiplier

    This is quite similar to the round_up() function. Here we are using math.floor() instead of math.ceil().

    >>> round_down(1.5)
    1
    
    >>> round_down(1.481)
    1.4
    
    >>> round_down(-0.5)
    -1

    Rounding a number up or down has extreme effects on a large dataset. After rounding up or down, you can actually remove a lot of precision as well as alter computations.

    Top Cities Where Knowledgehut Conduct Python Certification Course Online

    Python Course in BangalorePython Course in ChennaiPython Course in Singapore
    Python Course in DelhiPython Course in DubaiPython Course in Indore
    Python Course in PunePython Course in BerlinPython Course in Trivandrum
    Python Course in NashikPython Course in MumbaiPython Certification in Melbourne
    Python Course in HyderabadPython Course in KolkataPython Course in Noida

    4. Rounding Half Up in Python

    The “rounding half up” strategy rounds every number to the nearest number with the specified precision and breaks ties by rounding up. Here are some examples:

    ValueRound Half Up ToResult
    19.825Tens place10
    19.825Ones place20
    19.825Tenths place19.8
    19.825Hundredths place19.83

    In Python, the rounding half-up strategy can be implemented by shifting the decimal point to the right by the desired number of places. In this case, you will have to determine whether the digit after the shifted decimal point is less than or greater than equal to 5.

    You can add 0.5 to the value which is shifted and then round it down with the math.floor() function.

    def round_half_up(n, decimals=0):
        multiplier = 10 ** decimals
    return math.floor(n*multiplier + 0.5) / multiplier

    If you notice you might see that round_half_up() looks similar to round_down. The only difference is to add 0.5 after shifting the decimal point so that the result of rounding down matches the expected value.

    >>> round_half_up(19.23, 1)
    19.2
    
    >>> round_half_up(19.281)
    19.3
    
    >>> round_half_up(19.251)
    19.3

    5. Rounding Half Down

    In this method of rounding, it rounds to the nearest number similar like the “rounding half up” method, the difference is that it breaks ties by rounding to the lesser of the two numbers. Here are some examples:

    ValueRound Half Down ToResult
    16.825Tens place17
    16.825Ones place17
    16.825Tenths place16.8
    16.825Hundredths place16.82

    In Python, the “rounding half down” strategy can be implemented by replacing math.floor() in the round_half_up() function with math.ceil() and then by subtracting 0.5 instead of adding:

    def round_half_down(n, decimals=0):
        multiplier = 10 ** decimals
    return math.ceil(n*multiplier - 0.5) / multiplier

    Let us look into some test cases.

    >>> round_half_down(1.5)
    1.0
    
    >>> round_half_down(-1.5)
    -2.0
    
    >>> round_half_down(2.251)
    2.2

    In general, there are no bias for both round_half_up() and round_half_down(). However, rounding of data with more number of ties results in bias. Let us consider an example to understand better.

    >>> data = [-2.151.454.35-12.75]

    Let us compute the mean of these numbers:

    >>> statistics.mean(data)
    -2.275

    Now let us compute the mean on the data after rounding to one decimal place with round_half_up() and round_half_down():

    >>> rhu_data = [round_half_up(n, 1for n in data]
    >>> statistics.mean(rhu_data)
    -2.2249999999999996
    
    >>> rhd_data = [round_half_down(n, 1for n in data]
    >>> statistics.mean(rhd_data)
    -2.325

    The round_half_up() function results in an around toward positive infinity bias, and round_half_down() results in a round toward negative infinity bias.

    6. Rounding Half Away From Zero

    If you have noticed carefully while going through round_half_up() and round_half_down(), neither of the two is symmetric around zero:

    >>> round_half_up(1.5)
    2.0
    
    >>> round_half_up(-1.5)
    -1.0
    
    >>> round_half_down(1.5)
    1.0
    
    >>> round_half_down(-1.5)
    -2.0

    In order to introduce symmetry, you can always round a tie away from zero. The table mentioned below illustrates it clearly:

    ValueRound Half Away From Zero ToResult
    16.25Tens place20
    16.25Ones place16
    16.25Tenths place16.3
    -16.25Tens place-20
    -16.25Ones place-16
    -16.25Tenths place-16.3

    The implementation of the “rounding half away from zero” strategy on a number n is very simple. All you need to do is start as usual by shifting the decimal point to the right of a given number of places and then notice the digit d immediately to the right of the decimal place in this new number. Here, there are four cases to consider:

    1. If n is positive and d >= 5, round up
    2. If n is positive and d < 5, round down
    3. If n is negative and d >= 5, round down
    4. If n is negative and d < 5, round up

    After rounding as per the rules mentioned above, you can shift the decimal place back to the left.

    There is a question that might come to your mind - How do you handle situations where the number of positive and negative ties are drastically different? The answer to this question brings us full circle to the function that deceived us at the beginning of this article: Python’s built-in round() function.

    7. Rounding Half To Even

    There is a way to mitigate rounding bias while you are rounding values in a dataset. You can simply round ties to the nearest even number at the desired precision. Let us look at some examples:

    ValueRound Half To Even ToResult
    16.255Tens place20
    16.255Ones place16
    16.255Tenths place16.2
    16.255Hundredths place16.26

    To prove that round() really does round to even, let us try on a few different values:

    >>> round(4.5)
    4
    
    >>> round(3.5)
    4
    
    >>> round(1.751)
    1.8
    
    >>> round(1.651)
    1.6

    The Decimal Class

    The decimal module in Python is one of those language features that you might not be aware of if you have just started learning Python. Decimal “is based on a floating-point model which was designed with people in mind, and necessarily has a paramount guiding principle – computers must provide an arithmetic that works in the same way as the arithmetic that people learn at school.” – except the decimal arithmetic specification. 

    Some of the benefits of the decimal module are mentioned below -

    • Exact decimal representation: 0.1 is actually 0.1, and 0.1 + 0.1 + 0.1 - 0.3 returns 0, as expected.
    • Preservation of significant digits: When you add 1.50 and 2.30, the result is 3.80 with the trailing zero maintained to indicate significance.
    • User-alterable precision: The default precision of the decimal module is twenty-eight digits, but this value can be altered by the user to match the problem at hand.

    How Rounding Works in the Decimal Module?

    Let us see how rounding works in the decimal module.

    >>> import decimal
    >>> decimal.getcontext()
    Context(
        prec=28,
        rounding=ROUND_HALF_EVEN,
        Emin=-999999,
        Emax=999999,
        capitals=1,
        clamp=0,
        flags=[],
        traps=[
            InvalidOperation,
            DivisionByZero,
            Overflow
        ]
    )

    The function decimal.getcontext() returns a context object which represents the default context of the decimal module. It also includes the default precision and the default rounding strategy.

    In the above example, you will see that the default rounding strategy for the decimal module is ROUND_HALF_EVEN. It allows aligning with the built-in round() function

    Let us create a new Decimal instance by passing a string containing the desired value and declaring a number using the decimal module’s Decimal class.

    >>> from decimal import Decimal
    >>> Decimal("0.1")
    Decimal('0.1')

    You may create a Decimal instance from a floating-point number, but in that case, a floating-point representation error will be introduced. For example, this is what happens when you create a Decimal instance from the floating-point number 0.1

    >>> Decimal(0.1)
    Decimal('0.1000000000000000055511151231257827021181583404541015625')

    You may create Decimal instances from strings containing the decimal numbers you need in order to maintain exact precision.

    Rounding a Decimal using the .quantize() method

    >>> Decimal("1.85").quantize(Decimal("1.0"))
    Decimal('1.8')

    The Decimal("1.0") argument in .quantize() allows determining the number of decimal places in order to round the number. As 1.0 has one decimal place, the number 1.85 rounds to a single decimal place. Rounding half to even is the default strategy, hence the result is 1.8.

    Decimal class:

    >>> Decimal("2.775").quantize(Decimal("1.00"))
    Decimal('2.78')

    The decimal module provides another benefit. After performing arithmetic, the rounding is taken care of automatically, and also the significant digits are preserved.

    >>> decimal.getcontext().prec = 2
    >>> Decimal("2.23") + Decimal("1.12")
    Decimal('3.4')

    To change the default rounding strategy, you can set the decimal.getcontect().rounding property to any one of several flags. The following table summarizes these flags and which rounding strategy they implement:

    FlagRounding Strategy
    decimal.ROUND_CEILINGRounding up
    decimal.ROUND_FLOORRounding down
    decimal.ROUND_DOWNTruncation
    decimal.ROUND_UPRounding away from zero
    decimal.ROUND_HALF_UPRounding half away from zero
    decimal.ROUND_HALF_DOWNRounding half towards zero
    decimal.ROUND_HALF_EVENRounding half to even
    decimal.ROUND_05UPRounding up and rounding towards zero

    Rounding NumPy Arrays

    In Data Science and scientific computation, we usually store data as a  NumPy array. One of the most powerful features of NumPy is the use of vectorization and broadcasting to apply operations to an entire array at once instead of one element at a time.

    Let’s generate some data by creating a 3×4 NumPy array of pseudo-random numbers:

    >>> import numpy as np
    >>> np.random.seed(444)
    
    >>> data = np.random.randn(34)
    >>> data
    array([[ 0.35743992,  0.3775384 ,  1.38233789,  1.17554883],
           [-0.9392757 , -1.14315015, -0.54243951, -0.54870808],
           [ 0.20851975, 0.21268956, 1.26802054, -0.80730293]])

    Here, first we seed the np.random module to reproduce the output easily. Then a 3×4 NumPy array of floating-point numbers is created with np.random.randn().

    Do not forget to install pip3 before executing the code mentioned above. If you are using  Anaconda, you are good to go.

    To round all of the values in the data array, pass data as the argument to the np.around() function. The desired number of decimal places is set with the decimals keyword argument. In this case, the round half to even strategy is used similar to Python’s built-in round() function.

    To round the data in your array to integers, NumPy offers several options which are mentioned below:

    The np.ceil() function rounds every value in the array to the nearest integer greater than or equal to the original value:

    >>> np.ceil(data)
    array([[ 1.,  1.,  2.,  2.],
           [-0., -1., -0., -0.],
           [ 1., 1., 2., -0.]])

    Look at the code carefully; we have a new number! Negative zero! Let us now take a look at Pandas library, widely used in Data Science with Python.

    Rounding Pandas Series and DataFrame

    Pandas have been a game-changer for data analytics and data science. The two main data structures in Pandas are Dataframe and Series. Dataframe works like an Excel spreadsheet whereas you can consider Series to be columns in a spreadsheet. Series.round() and DataFrame.round() methods. Let us look at an example.

    Do not forget to install pip3 before executing the code mentioned above. If you are using  Anaconda you are good to go.

    >>> import pandas as pd
    
    >>> # Re-seed np.random if you closed your REPL since the last example
    >>> np.random.seed(444)
    
    >>> series = pd.Series(np.random.randn(4))
    >>> series
    0    0.357440
    1    0.377538
    2    1.382338
    3    1.175549
    dtype: float64
    
    >>> series.round(2)
    0    0.36
    1    0.38
    2    1.38
    3    1.18
    dtype: float64
    
    >>> df = pd.DataFrame(np.random.randn(33), columns=["A""B""C"])
    >>> df
              A         B         C
    0 -0.939276 -1.143150 -0.542440
    1 -0.548708  0.208520  0.212690
    2  1.268021 -0.807303 -3.303072
    
    >>> df.round(3)
           A      B      C
    0 -0.939 -1.143 -0.542
    1 -0.549  0.209  0.213
    2  1.268 -0.807 -3.303
    
    The DataFrame.round() method can also accept a dictionary or a Series, to specify a different precision for each column. For instance, the following examples show how to round the first column of df to one decimal place, the second to two, and the third to three decimal places:
    >>> # Specify column-by-column precision with a dictionary
    >>> df.round({"A"1"B"2"C"3})
         A     B      C
    0 -0.9 -1.14 -0.542
    1 -0.5  0.21  0.213
    2  1.3 -0.81 -3.303
    
    >>> # Specify column-by-column precision with a Series
    >>> decimals = pd.Series([123], index=["A""B""C"])
    >>> df.round(decimals)
         A     B      C
    0 -0.9 -1.14 -0.542
    1 -0.5  0.21  0.213
    2  1.3 -0.81 -3.303
    
    If you need more rounding flexibility, you can apply NumPy's floor(), ceil(), and print() functions to Pandas Series and DataFrame objects:
    >>> np.floor(df)
         A    B    C
    0 -1.0 -2.0 -1.0
    1 -1.0  0.0  0.0
    2  1.0 -1.0 -4.0
    
    >>> np.ceil(df)
         A    B    C
    0 -0.0 -1.0 -0.0
    1 -0.0  1.0  1.0
    2  2.0 -0.0 -3.0
    
    >>> np.rint(df)
         A    B    C
    0 -1.0 -1.0 -1.0
    1 -1.0  0.0  0.0
    2  1.0 -1.0 -3.0
    
    The modified round_half_up() function from the previous section will also work here:
    >>> round_half_up(df, decimals=2)
          A     B     C
    0 -0.94 -1.14 -0.54
    1 -0.55  0.21  0.21
    2 1.27 -0.81 -3.30

    Python Round Function: Best Practices and Applications

    Now that you have come across most of the rounding techniques, let us learn some of the best practices to make sure we round numbers in the correct way.

    1. Generate More Data and Round Later

    Suppose you are dealing with a large set of data, storage can be a problem at times. For example, in an industrial oven, you would want to measure the temperature every ten seconds accurately to eight decimal places using a temperature sensor. These readings will help to avoid large fluctuations which may lead to the failure of any heating element or components. We can write a Python script to compare the readings and check for large fluctuations.

    There will be a large number of readings as they are being recorded each and every day. You may consider maintaining three decimal places of precision. But again, removing too much precision may result in a change in the calculation. However, if you have enough space, you can easily store the entire data at full precision. With less storage, it is always better to store at least two or three decimal places of precision that are required for calculation.

    In the end, once you are done computing the daily average of the temperature, you may calculate it to the maximum precision available and finally round the result.

    2. Currency Exchange and Regulations

    Whenever we purchase an item from a particular place, the tax amount paid against the amount of the item depends largely on geographical factors. An item that costs you $2 may cost you less (say $1.8)  if you buy the same item from a different state. It is due to regulations set forth by the local government.

    In another case, Swedish rounding is done when the minimum unit of currency at the accounting level in a country is smaller than the lowest unit of physical currency. You can find a list of such rounding methods used by various countries if you look it up on the internet.

    If you want to design any such software for calculating currencies, keep in mind to check the local laws and regulations applicable in your present location.

    3. Reduce error

    As you are rounding numbers in a large dataset used in complex computations, your primary concern should be to limit the growth of the error due to rounding.

    Summary

    In this article, we have seen a few methods to round numbers, out of those “rounding half to even” strategy minimizes rounding bias the best. We are lucky to have Python, NumPy, and Pandas already have built-in rounding functions to use this strategy. Here, we have learned about -

    • Several rounding strategies and how to implement them in pure Python.
    • Every rounding strategy inherently introduces a rounding bias, and the “rounding half to even” strategy mitigates this bias well, most of the time.
    • You can round NumPy arrays and Pandas Series and DataFrame objects.

    If you enjoyed reading this article and found it to be interesting, leave a comment. To learn more about rounding numbers and other features of Python, join KnowledgeHut's Python Programming for beginners.

    Frequently Asked Questions (FAQs)

    1How do you round off in Python 3?

    We can simply round numbers in Python using the "round" function. It requires no imports. All we have to do is use the following syntax round(value). The value here can be a variable or a direct integer or a floating point value.

    2How do you round to 2 decimal places in Python?

    To round to a specific number of digits, we add another parameter to the round function, for example, round(5.4231, 2) rounds to 5.42.

    3How do you round to 4 decimal places in Python?

    In the same way, we can simply use round(value, 4) to round to 4 decimal places. For example, round(5.4231231, 4) rounds to 5.4231.

    Profile

    Priyankur Sarkar

    Data Science Enthusiast

    Priyankur Sarkar loves to play with data and get insightful results out of it, then turn those data insights and results in business growth. He is an electronics engineer with a versatile experience as an individual contributor and leading teams, and has actively worked towards building Machine Learning capabilities for organizations.

    Share This Article
    Ready to Master the Skills that Drive Your Career?

    Avail your free 1:1 mentorship session.

    Select
    Your Message (Optional)

    Upcoming Programming Batches & Dates

    NameDateFeeKnow more
    Course advisor icon
    Course Advisor
    Whatsapp/Chat icon