gpt4 book ai didi

python - python中大数的浮点除法

转载 作者:太空狗 更新时间:2023-10-30 02:59:36 25 4
gpt4 key购买 nike

我有两个大数字 ab长度约为 10000,这样 a <= b .现在,我必须找到 c = a / b , 最多 10 位小数,我该怎么做才不会失去精度?

最佳答案

decimal 模块应该可以工作。如 TigerhawkT3 的链接所示,您可以选择商应保留的小数位数。

from decimal import *
getcontext().prec = 6
a = float(raw_input('The first number:')) #Can be int() if needed
b = float(raw_input('The second number:'))
c = Decimal(a) / Decimal(b)
print float(c)

关于python - python中大数的浮点除法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31305427/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com