Answers for "python to decimal"

4

give answer in 6 decimal python

print("{:.6f}".format(variable_name))
Posted by: Guest on May-20-2020
2

fixed precision float python

x = 13.949999999999999999
g = float("{:.2f}".format(x))
Posted by: Guest on May-20-2020
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
1

decimal to int python

print "%.4f" % 3.3333333333
3.3333
print "%.4f" % 6.6666666666
6.6667
Posted by: Guest on April-06-2020
-1

decimal conversion python

#Example with binary number 10101100 which is 172 in denary

number = 10101100
print(int(str(number),base=2))

#Prints out the denary value so 172 in this example.
Posted by: Guest on February-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language