Answers for "how to lessen decimal point in float pyhton"

-1

python decimal precision, float

#!/usr/bin/python

from decimal import Decimal

x = 1 / 3
print(type(x))
print(x)

print("-----------------------")

y = Decimal(1) / Decimal(3)
print(type(y))
print(y)
Posted by: Guest on June-25-2021

Code answers related to "how to lessen decimal point in float pyhton"

Python Answers by Framework

Browse Popular Code Answers by Language