我將[-0.32695389161796801, -0.31471406408825409, -0.31475407980700348]中的每個元素進行先保留小數點後3位再保留小數點後3位的操作數點用後2196963219696032196. ,2)的方式,得到[-0.33000000000000002, -0.32000000000000001, -0.32000000000000001],但我想得到的是[-0.33, -0.32, -0.32],謝謝
天蓬老师2017-05-18 10:54:59
在使用Python處理精度很重要的浮點數時,建議使用內建的Decimal函式庫:
from decimal import Decimal
a = Decimal('1.0231212121')
a = round(a,3) # Decimal('1.023')
如果只是要求看起來“精確”,那麼也可以用字串的format方法
'{:.2f}'.format(1.0231212121) # '1.02'