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 102 views
1 answer 165 views
1 answer 182 views
1 answer 100 views
1 answer 150 views
1 answer 169 views
169 views asked Sep 5, 2019 by avibootz
...