我想在python中保持浮点数的总位数(小数点前后)。
例如,如果我想要固定宽度为7: 1234.567890123 会成为 1234.567 但 12345.678901234 会成为 12345.67
在这种情况下,修复小数位数不起作用,因为它取决于我在小数点之前有多少位数。我也尝试了[width]选项,但是它施加了最小宽度,我需要一个最大值。
感谢您的投入!
答案 0 :(得分:0)
仅使用您的示例,
a = 1234.567890123
b = 12345.678901234
str(a)[:8] # gives '1234.567'
str(b)[:8] # gives '12345.67'
答案 1 :(得分:0)
最简单的解决方案可能是使用指数格式,其中一个小于位数。
"{0:.6e}".format(1234.457890123) = '1.234568e+03'
我最终编写了这个可以打印浮点数和指数的解决方案,但对于大多数需求来说,它可能不必要地长。
import numpy as np
def sigprint(number,nsig):
"""
Returns a string with the given number of significant digits.
For numbers >= 1e5, and less than 0.001, it does exponential notation
This is almost what ":.3g".format(x) does, but in the case
of '{:.3g}'.format(2189), we want 2190 not 2.19e3. Also in the case of
'{:.3g}'.format(1), we want 1.00, not 1
"""
if ((abs(number) >= 1e-3) and (abs(number) < 1e5)) or number ==0:
place = decplace(number) - nsig + 1
decval = 10**place
outnum = np.round(np.float(number) / decval) * decval
## Need to get the place again in case say 0.97 was rounded up to 1.0
finalplace = decplace(outnum) - nsig + 1
if finalplace >= 0: finalplace=0
fmt='.'+str(int(abs(finalplace)))+'f'
else:
stringnsig = str(int(nsig-1))
fmt = '.'+stringnsig+'e'
outnum=number
wholefmt = "{0:"+fmt+"}"
return wholefmt.format(outnum)
def decplace(number):
"""
Finds the decimal place of the leading digit of a number. For 0, it assumes
a value of 0 (the one's digit)
"""
if number == 0:
place = 0
else:
place = np.floor(np.log10(np.abs(number)))
return place
答案 2 :(得分:0)
使用decimal
时可以设置精度听起来你也想要向下舍入,但如果你愿意,可以选择其他的舍入选项。您可以创建包含精度,舍入逻辑和一些其他选项的上下文。您可以使用setcontext
将上下文应用于所有未来的操作,使用normalize
将一个数字应用于单个数字,或使用localcontext
将上下文管理器应用于上下文。
import decimal
ctx = decimal.Context(prec=7, rounding=decimal.ROUND_DOWN)
print(decimal.Decimal.from_float(1234.567890123).normalize(ctx))
print(decimal.Decimal.from_float(12345.678901234).normalize(ctx))