How to change the default precision of the decimal type in Python

1 Answer

0 votes
from decimal import getcontext, Decimal
import math

getcontext().prec = 15
result = Decimal(1) / Decimal(8)

print("   math.sqrt: {0}".format(Decimal(math.sqrt(result))))

print("decimal.sqrt: {0}".format(result.sqrt()))




'''
run:

   math.sqrt: 0.353553390593273786368655464684707112610340118408203125
decimal.sqrt: 0.353553390593274

'''

 



answered Jul 10, 2023 by avibootz

Related questions

1 answer 95 views
1 answer 160 views
1 answer 175 views
1 answer 99 views
1 answer 143 views
1 answer 160 views
160 views asked Sep 5, 2019 by avibootz
...