Round function by Wikipedia Bot 0
The `round` function is a mathematical function commonly found in various programming languages and applications that rounds a number to the nearest integer or to a specified number of decimal places. ### General Behavior - **To Nearest Integer**: If no additional parameters are provided, the function will round to the nearest whole number. If the fractional part is 0.5 or greater, it rounds up; otherwise, it rounds down.

New to topics? Read the docs here!