Python Round() Function Tutorial

Rounding numbers is a common operation in Python, especially when working with floating-point numbers. Python’s round() function makes it easy to round numbers to a specified number of decimal places or the nearest integer. Whether you need to round up, round down, or round to a specific decimal point, Python…

Table of Contents

    Add a header to begin generating the table of contents

    Related Courses

    Rounding numbers is a common operation in Python, especially when working with floating-point numbers. Python’s round() function makes it easy to round numbers to a specified number of decimal places or the nearest integer. Whether you need to round up, round down, or round to a specific decimal point, Python has you covered with its versatile round() function.

    In this tutorial, we’ll cover everything you need to know about the round() function, including how to use it, how to round up or down, and practical examples for common rounding tasks.

    What is the round() Function in Python?

    The round() function in Python rounds a floating-point number to the nearest integer or specified number of decimal places. It’s a straightforward tool to manage number formatting and accuracy, especially in data analysis, financial calculations, and scientific computing.

    Basic Syntax

    round(number, ndigits)
    • number: The number you want to round.
    • ndigits: The number of decimal places to round to. This parameter is optional. If not specified, round() will return the nearest integer.

    Example: Basic Rounding in Python

    number = 3.14159
    rounded_number = round(number, 2)
    print(rounded_number)

    Output:

    3.14

    In this example, round(3.14159, 2) rounds the number to two decimal places, resulting in 3.14.

    How to Round in Python with the round() Function

    The round() function can be used to round numbers to various levels of precision:

    Rounding to the Nearest Integer

    If you omit the ndigits parameter, round() will round to the nearest whole number.

    print(round(4.7))  # Rounds up to 5
    print(round(4.2))  # Rounds down to 4

    Output:

    5
    4

    When the decimal is .5 or higher, Python rounds up. When it’s lower than .5, Python rounds down.

    Rounding to Specific Decimal Places

    To round to a specific number of decimal places, provide an integer for ndigits.

    number = 3.56789
    print(round(number, 1))  # Rounds to 1 decimal place
    print(round(number, 3))  # Rounds to 3 decimal places

    Output:

    3.6
    3.568

    This flexibility lets you round numbers with precision, making it easy to format data exactly how you need.

    How to Round Up and Round Down in Python

    While round() rounds to the nearest integer or decimal, you may sometimes want to control whether the rounding always goes up or always goes down. For these scenarios, you can use Python’s math library.

    Rounding Up with math.ceil()

    The math.ceil() function rounds a number up to the nearest integer, regardless of its decimal value.

    import math
    
    print(math.ceil(4.2))  # Rounds up to 5
    print(math.ceil(4.7))  # Also rounds up to 5

    Output:

    5
    5

    With math.ceil(), Python always rounds up, which can be useful when you need to set a lower boundary.

    Rounding Down with math.floor()

    The math.floor() function rounds a number down to the nearest integer.

    import math
    
    print(math.floor(4.2))  # Rounds down to 4
    print(math.floor(4.7))  # Also rounds down to 4

    Output:

    4
    4

    With math.floor(), Python always rounds down, which is useful when you want to cap a number from exceeding a specific value.

    How to Round Halfway Cases in Python

    When a number ends in .5, the Python round() function rounds it to the nearest even number, following a practice called “bankers’ rounding.”

    print(round(2.5))  # Rounds to 2
    print(round(3.5))  # Rounds to 4

    Output:

    2
    4

    This approach minimizes rounding bias, making it useful in fields like finance and data science where large datasets could skew if always rounded up or down.

    Examples of Using round() in Python

    Here are some practical examples of how to use the round() function to manage decimal precision.

    Example 1: Financial Calculations

    Rounding to two decimal places is standard in financial applications where you deal with currency values.

    amount = 19.9999
    rounded_amount = round(amount, 2)
    print(f"Rounded amount: ${rounded_amount}")

    Output:

    Rounded amount: $20.0

    Rounding to two decimals helps format prices and financial data accurately.

    Example 2: Data Analysis

    When working with data that involves small measurements, rounding to a specific precision can make your data easier to interpret.

    data_point = 0.3333333
    rounded_data = round(data_point, 4)
    print("Rounded data point:", rounded_data)

    Output:

    Rounded data point: 0.3333

    In data analysis, rounding can simplify presentations without significantly altering the data.

    Example 3: Percentages

    When calculating percentages, you often want to round to one or two decimal places to make the result easier to understand.

    correct_answers = 47
    total_questions = 50
    accuracy = (correct_answers / total_questions) * 100
    print("Accuracy:", round(accuracy, 1), "%")

    Output:

    Accuracy: 94.0 %

    This example rounds the accuracy percentage to one decimal place.

    Summary of Python round() Function

    The round() function is a flexible and powerful tool in Python, essential for formatting numbers and controlling precision. Here’s a recap of the key points:

    • Basic Usage: round(number, ndigits) rounds a number to the nearest integer or specified decimal place.
    • Round Up: Use math.ceil() to always round up to the nearest integer.
    • Round Down: Use math.floor() to always round down to the nearest integer.
    • Bankers’ Rounding: When rounding halfway cases, Python rounds to the nearest even integer by default.

    Understanding how to round in Python will help you manage numerical data effectively, ensuring your outputs are accurate and formatted consistently. Experiment with the round() function in your own projects to see how it can simplify your work with numbers and enhance data readability!

    CREATE YOUR FREE ACCOUNT & GET OUR

    FREE IT LABS

    Posted in ,
    profile avatar

    Paul Hill

    Paul Hill is the founder of ServerAcademy.com and IT instructor to over 500,000 students online!
    0 0 votes
    Lesson Rating
    Subscribe
    Notify of
    profile avatar
    0 Comments
    Inline Feedbacks
    View all comments