User Tools

Site Tools


en:round

This is an old revision of the document!


Round (Function)

Format

Description

This function rounds a floating point number. The second argument should be an integer defining 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.1587525939.txt.gz · Last modified: 2020/04/21 21:25 by admin