标签: python-3.x math rounding
我想使用python对数字进行四舍五入,但是round(1.45, 1)返回1.4,而使用普通的四舍五入规则,答案应该是1.5。
round(1.45, 1)
1.4
1.5
如何更改此行为?