Rounding a number to the nearest integer converts it to the closest whole number. For example, rounding 2.7 to the nearest integer results in 3.
Solution for How to round a number to the nearest integer in Python : You can use round() to round a number to the nearest integer Call round(number) to round number to the nearest whole integer.