Answers for "using decimal library python"

2

decimal in python

>>> from decimal import *
>>> getcontext().prec = 6
>>> Decimal(1) / Decimal(7)
Decimal('0.142857')
>>> getcontext().prec = 28
>>> Decimal(1) / Decimal(7)
Decimal('0.1428571428571428571428571429')
Posted by: Guest on June-24-2020
0

How to solve not in base 10 in python when using decimals

Example = float(input("Question?"))
Example_2 = float(input("Question2?"))
Awnser_1 = float(Example) * float(Example_2)
print = Awnser_1
Posted by: Guest on June-12-2020

Code answers related to "using decimal library python"

Python Answers by Framework

Browse Popular Code Answers by Language