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'
方案一:
使用Python处理精度很重要的浮点数时,建议使用内置的Decimal库:
from decimal import Decimal a = Decimal('1.0231212121') a = round(a,3) # Decimal('1.023')
方案二:
用字符串的format方法:
'{:.2f}'.format(1.0231212121) # '1.02'