使用 Python 2.7 如何将我的数字四舍五入到小数点后两位而不是它给出的 10 位左右?
print "financial return of outcome 1 =","$"+str(out1)
使用 Python 2.7 如何将我的数字四舍五入到小数点后两位而不是它给出的 10 位左右?
print "financial return of outcome 1 =","$"+str(out1)
使用内置函数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.
由于您在谈论财务数据,因此您不想使用浮点运算。你最好使用十进制。
>>> 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')
请记住,如果您正在模拟回报结果,您可能必须在每个利息期四舍五入,因为您不能支付/接收美分,也不能接收超过美分的利息。对于模拟,由于固有的不确定性,仅使用浮点是很常见的,但如果这样做,请始终记住错误是存在的。因此,即使是固定利率投资的回报也可能因此而有所不同。
你也可以使用str.format()
:
>>> print "financial return of outcome 1 = {:.2f}".format(1.23456)
financial return of outcome 1 = 1.23
使用便士/整数时。您将遇到 115(如 1.15 美元)和其他数字的问题。
我有一个函数可以将整数转换为浮点数。
...
return float(115 * 0.01)
这在大多数情况下都有效,但有时它会返回类似1.1500000000000001
.
所以我改变了我的功能,让它像这样返回......
...
return float(format(115 * 0.01, '.2f'))
那将返回1.15
。非'1.15'
或1.1500000000000001
(返回浮点数,而不是字符串)
我主要发布这个,所以我可以记住我在这种情况下做了什么,因为这是谷歌的第一个结果。
我认为最好的方法是使用format()函数:
>>> print("financial return of outcome 1 = $ " + format(str(out1), '.2f'))
// Should print: financial return of outcome 1 = $ 752.60
但我不得不说:在处理财务价值时不要使用圆形或格式。
当我们使用 round() 函数时,它不会给出正确的值。
您可以使用 round (2.735) 和 round(2.725) 检查它
请用
import math
num = input('Enter a number')
print(math.ceil(num*100)/100)
print "financial return of outcome 1 = $%.2f" % (out1)
四舍五入到下一个 0.05,我会这样做:
def roundup(x):
return round(int(math.ceil(x / 0.05)) * 0.05,2)
一个相当简单的解决方法是先将浮点数转换为字符串,然后选择前四个数字的子字符串,最后将子字符串转换回浮点数。例如:
>>> out1 = 1.2345
>>> out1 = float(str(out1)[0:4])
>>> out1
可能不是超级高效但简单且有效:)