python-small-examples

@author jackzhenguo
@desc 
@date 2019/2/15

12 四舍五入

四舍五入,ndigits代表小数点后保留几位:

In [11]: round(10.0222222, 3)
Out[11]: 10.022

In [12]: round(10.05,1)
Out[12]: 10.1
[上一个例子](/python-small-examples/md/11.html) [下一个例子](/python-small-examples/md/13.html)