标签: python python-2.7 biginteger bigdecimal
我在Python2中获得大约128位整数的立方根时遇到问题。以下断言给出了一个错误:
assert 188098593525197704876445094491719024115 == ((188098593525197704876445094491719024115) ** 3) ** (1.0/3)
我尝试Decimal类,精度设置为600,但它仍然给出了大约6-12位的值。
Decimal
我怎样才能使这个工作(最好没有自定义库)?