python decimal code example
Example 1: python 2 decimal places
print(format(432.456, ".2f"))
>> 432.45
print(format(321,".2f"))
>> 321.00
Example 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')
Example 3: fixed precision float python
x = 13.949999999999999999
g = float("{:.2f}".format(x))
Example 4: give answer in 6 decimal python
print("{:.6f}".format(variable_name))
Example 5: w=how to tell if decimal in python
i = 100
f = 1.23
print(type(i))
print(type(f))
Example 6: 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