erikwiffin / 0.30000000000000004

Floating Point Math Examples

Home Page:https://0.30000000000000004.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

python has a Decimal module

ZeeD opened this issue · comments

Example:

>>> from decimal import Decimal
>>> Decimal('0.1') + Decimal('0.2')
Decimal('0.3')

Someone provided a pull request for the Decimal module. #39 Does that cover it?

Sure, that's a reasonable way to show it.