85

使用 Python 2.7 如何将我的数字四舍五入到小数点后两位而不是它给出的 10 位左右?

print "financial return of outcome 1 =","$"+str(out1)
4

9 回答 9

203

使用内置函数round()

>>> round(1.2345,2)
1.23
>>> round(1.5145,2)
1.51
>>> round(1.679,2)
1.68

或内置功能format()

>>> format(1.2345, '.2f')
'1.23'
>>> format(1.679, '.2f')
'1.68'

或新样式字符串格式:

>>> "{:.2f}".format(1.2345)
'1.23
>>> "{:.2f}".format(1.679)
'1.68'

或旧式字符串格式:

>>> "%.2f" % (1.679)
'1.68'

帮助round

>>> print round.__doc__
round(number[, ndigits]) -> floating point number

Round a number to a given precision in decimal digits (default 0 digits).
This always returns a floating point number.  Precision may be negative.
于 2013-07-04T12:56:17.780 回答
50

由于您在谈论财务数据,因此您不想使用浮点运算。你最好使用十进制。

>>> from decimal import Decimal
>>> Decimal("33.505")
Decimal('33.505')

新样式的文本输出格式format()(默认为半偶数舍入):

>>> print("financial return of outcome 1 = {:.2f}".format(Decimal("33.505")))
financial return of outcome 1 = 33.50
>>> print("financial return of outcome 1 = {:.2f}".format(Decimal("33.515")))
financial return of outcome 1 = 33.52

查看由于浮点不精确导致的舍入差异:

>>> round(33.505, 2)
33.51
>>> round(Decimal("33.505"), 2)  # This converts back to float (wrong)
33.51
>>> Decimal(33.505)  # Don't init Decimal from floating-point
Decimal('33.50500000000000255795384873636066913604736328125')

四舍五入财务价值的正确方法

>>> Decimal("33.505").quantize(Decimal("0.01"))  # Half-even rounding by default
Decimal('33.50')

在不同的事务中进行其他类型的舍入也很常见:

>>> import decimal
>>> Decimal("33.505").quantize(Decimal("0.01"), decimal.ROUND_HALF_DOWN)
Decimal('33.50')
>>> Decimal("33.505").quantize(Decimal("0.01"), decimal.ROUND_HALF_UP)
Decimal('33.51')

请记住,如果您正在模拟回报结果,您可能必须在每个利息期四舍五入,因为您不能支付/接收美分,也不能接收超过美分的利息。对于模拟,由于固有的不确定性,仅使用浮点是很常见的,但如果这样做,请始终记住错误是存在的。因此,即使是固定利率投资的回报也可能因此而有所不同。

于 2016-09-27T14:05:43.463 回答
5

你也可以使用str.format()

>>> print "financial return of outcome 1 = {:.2f}".format(1.23456)
financial return of outcome 1 = 1.23
于 2013-07-04T13:10:19.630 回答
4

使用便士/整数时。您将遇到 115(如 1.15 美元)和其他数字的问题。

我有一个函数可以将整数转换为浮点数。

...
return float(115 * 0.01)

这在大多数情况下都有效,但有时它会返回类似1.1500000000000001.

所以我改变了我的功能,让它像这样返回......

...
return float(format(115 * 0.01, '.2f'))

那将返回1.15。非'1.15'1.1500000000000001(返回浮点数,而不是字符串)

我主要发布这个,所以我可以记住我在这种情况下做了什么,因为这是谷歌的第一个结果。

于 2015-04-27T23:58:19.050 回答
2

我认为最好的方法是使用format()函数:

>>> print("financial return of outcome 1 = $ " + format(str(out1), '.2f'))
// Should print: financial return of outcome 1 = $ 752.60

但我不得不说:在处理财务价值时不要使用圆形或格式。

于 2017-01-18T15:55:59.760 回答
2

当我们使用 round() 函数时,它不会给出正确的值。

您可以使用 round (2.735) 和 round(2.725) 检查它

请用

import math
num = input('Enter a number')
print(math.ceil(num*100)/100)
于 2017-05-10T14:17:38.550 回答
1
print "financial return of outcome 1 = $%.2f" % (out1)
于 2013-07-04T13:07:25.060 回答
0

四舍五入到下一个 0.05,我会这样做:

def roundup(x):
    return round(int(math.ceil(x / 0.05)) * 0.05,2)
于 2017-09-19T16:51:49.430 回答
0

一个相当简单的解决方法是先将浮点数转换为字符串,然后选择前四个数字的子字符串,最后将子字符串转换回浮点数。例如:

>>> out1 = 1.2345
>>> out1 = float(str(out1)[0:4])
>>> out1

可能不是超级高效但简单且有效:)

于 2017-05-08T01:51:09.860 回答