Python3 数字保留后几位

Python3 数字保留后几位

方案一:

使用Python处理精度很重要的浮点数时,建议使用内置的Decimal库:

from decimal import Decimal
a = Decimal('1.0231212121')
a = round(a,3) # Decimal('1.023')

方案二:

用字符串的format方法:

'{:.2f}'.format(1.0231212121) # '1.02'

 

posted @ 2018-11-08 15:33  整合侠  阅读(3465)  评论(0编辑  收藏  举报