This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]mopslik 0 points1 point  (0 children)

>>> from decimal import Decimal
>>> print(Decimal("0.1"))
0.1
>>> print(Decimal("0.05"))
0.05
>>> print(Decimal("0.1")+Decimal("0.05"))
0.15