The round () function in Python
The round () function in Python rounds a given number, returning that number as a floating point number, with the specified number of digits after the comma.
Continuing with the topic of built-in functions in Python, this article will introduce you to the round () function with syntax, usage, and specific examples. Invites you to read the track.
The round () function in Python rounds a given number, returning that number as a floating point number, with the specified number of digits after the comma. The number after the default comma is 0, meaning the function will return the nearest integer.
Syntax round () function in Python:
round(number[, ndigits])
Parameters of the round () function
The round () function has 2 parameters:
number: Thenumberyou want to round.ndigits: Number of digits after comma that you want to use to round numbers. The default is 0.
Return value from round ()
- Without
ndigits, the function will return the nearest integer. - If two parameters are supplied, the function returns
numberwith the decimalndigitsafter the comma.
Example 1: how does round () work?
For example, only pass the first parameter:
See more:
- The float () function in Python
- How to install Python on Windows, macOS, Linux
- Regular Expression (RegEx) in Python
- The sum () function in Python
You've just finished reading the article "The round () function in Python" edited by the TipsMake team. You can save the-round-function-in-python.pdf to your computer here to read later or print it out. We hope this article has provided you with many useful tech tips and tricks. You can search for similar articles on tips and guides. Thank you for reading and for following us regularly.