How to convert Decimal() to a number in Python?
我有一个json输出,它是
我可以使用str()得到一个字符串,它是
如何在python中进行转换?
这取决于你所说的"数字"是什么意思,可以说
1 2 3 4 5 6 7 | from decimal import Decimal x = Decimal('142.68500203') y = float(x) print x, y |
给予:
1 | 142.68500203 142.68500203 |
但是当心!有充分的理由使用
这很容易:
1 | float("142.68500203") |