User Tools

Site Tools


en:round

Round (Function)

Format

Description

This function rounds a floating point number. The optional second argument (an integer) defines how many decimal places to round to.

Example

a = 3.1415926535
print round(a)
print round(a,1)
print round(a,2)
print round(a,3)
print round(a,4)
3.0
3.1
3.14
3.142
3.1416

See Also

History

2.0.0.0New To Version
en/round.txt · Last modified: 2020/04/21 21:26 by admin