We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I had expected this to work:
julia> Decimal(10)^30 / Decimal(2)^100 Decimal(0, 0, 0)
With python:
In [9]: 10**30 / 2**100 Out[9]: 0.7888609052210118
The text was updated successfully, but these errors were encountered:
@dec_str
Divide: implementation + dectest
d3c31ef
Fixes JuliaMath#56 We now have: ```julia julia> Decimal(10)^30 / Decimal(2)^100 0.7888609052210118054117285655 ``` In Python: ``` >>> Decimal(10)**30 / Decimal(2)**100 Decimal('0.7888609052210118054117285655') ```
2f1ec58
514bf8a
Successfully merging a pull request may close this issue.
I had expected this to work:
With python:
The text was updated successfully, but these errors were encountered: