我不知道如何为日志指定十进制精度,导入十进制和设置上下文不会影响日志功能。
from decimal import *
getcontext().prec = 54
print(Decimal(197)/ Decimal(83))
2.37349397590361445783132530120481927710843373493975904
print(math.log(Decimal(197)))
5.2832037287379885
我想为分数以外的函数设置一个高精度。 Python 3顺便说一句。
答案 0 :(得分:0)
decimal
模块相同的程度x = 4567.09710599898797936589076897
y = 2445.89790870380808990080797897
print(f'{(x/y):.054f}')
>>> 1.867247643389702504990168563381303101778030395507812500
calculation = math.log(197)
print(f'{calculation:.050f}')
>>> 5.28320372873798849155946300015784800052642822265625
print(f'{(x/y):.02f}')
>>> 1.87
numpy
:print(np.round(x/y, 2))
>>> 1.87
numpy
不会超出python所显示的精度。print(np.around(x/y, 54))
>>> 1.8672476433897025
print(x/y)
>>> 1.8672476433897025
decimal
模块:print(math.log(197))
>>> 5.2832037287379885
print(math.log(Decimal(197.0)))
>>> 5.2832037287379885
print(Decimal(math.log(197)))
>>> 5.28320372873798849155946300015784800052642822265625
print(Decimal(197).ln())
>>> 5.283203728737988506779797329
print(f'{math.log(197):.050f}')
>>> 5.28320372873798849155946300015784800052642822265625
f-strings
可以提供与使用decimal
模块相同的最终输出精度。